Add uwu in COBOL

This commit is contained in:
sech1p 2021-07-25 19:17:33 +02:00
parent c84de0992f
commit cf968d4237
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,7 @@ uwu in every programming language in the world
- [C](uwu.c)
- [C#](uwu.cs)
- [C++](uwu.cpp)
- [COBOL](uwu.cbl)
- [D](uwu.d)
- [Elixir](uwu.ex)
- [Emojicode](uwu.emojic)

5
uwu.cbl Normal file
View File

@ -0,0 +1,5 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. UWU.
PROCEDURE DIVISION.
DISPLAY 'uwu'.
STOP RUN.