kjelsrud.dev/node_modules/shiki/samples/cobol.sample
2023-07-19 21:31:30 +02: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