From 16cb282ad266674de090cc5c6439944e242074c5 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 22 May 2022 04:21:33 -0700 Subject: feat(0.1.0): initial release --- examples/HELLO_WORLD.CBL | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 examples/HELLO_WORLD.CBL (limited to 'examples/HELLO_WORLD.CBL') diff --git a/examples/HELLO_WORLD.CBL b/examples/HELLO_WORLD.CBL new file mode 100644 index 0000000..704c58a --- /dev/null +++ b/examples/HELLO_WORLD.CBL @@ -0,0 +1,8 @@ + IDENTIFICATION DIVISION. + PROGRAM-ID. HELLO_WORLD. + DATA DIVISION. + WORKING-STORAGE SECTION. + 77 FOO PIC 99 VALUE 43. + PROCEDURE DIVISION. + DISPLAY "Hello, World!" FOO + STOP RUN. -- cgit v1.2.3