Add uwu in COBOL
This commit is contained in:
parent
c84de0992f
commit
22d98bbdd6
3 changed files with 13 additions and 0 deletions
|
@ -10,6 +10,8 @@ uwu in every programming language in the world
|
|||
- [C](uwu.c)
|
||||
- [C#](uwu.cs)
|
||||
- [C++](uwu.cpp)
|
||||
- [COBOL](uwu.cbl)
|
||||
- [GnuCOBOL](uwu.gcbl)
|
||||
- [D](uwu.d)
|
||||
- [Elixir](uwu.ex)
|
||||
- [Emojicode](uwu.emojic)
|
||||
|
|
5
uwu.cbl
Normal file
5
uwu.cbl
Normal file
|
@ -0,0 +1,5 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. UWU.
|
||||
PROCEDURE DIVISION.
|
||||
DISPLAY 'uwu'.
|
||||
STOP RUN.
|
6
uwu.gcbl
Normal file
6
uwu.gcbl
Normal file
|
@ -0,0 +1,6 @@
|
|||
000100 id division.
|
||||
000200 program-id. uwu.
|
||||
000300 procedure division.
|
||||
000400 display "uwu" end-display
|
||||
000500 goback.
|
||||
|
Loading…
Reference in a new issue