Urara-Blog/node_modules/.pnpm-store/v3/files/7e/62d1a40c21d68c8817d0c1007197d0a92fb4e8c9d680be1d226c5ee9a38d0e3abc41cdeb8dee3e8c8488e2d3b93b866ec5c5b132bdc048c4be5d518e9f74ab
2022-08-14 01:14:53 +08:00

12 lines
No EOL
335 B
Text

*> setup the identification division
IDENTIFICATION DIVISION.
*> setup the program id
PROGRAM-ID. HELLO.
*> setup the procedure division (like 'main' function)
PROCEDURE DIVISION.
*> print a string
DISPLAY 'WILLKOMMEN'.
*> end our program
STOP RUN.
*> From https://medium.com/@yvanscher/7-cobol-examples-with-explanations-ae1784b4d576