add: main function

This commit is contained in:
2026-03-12 21:09:49 -07:00
parent c0951fc9d4
commit 90de2206db
9 changed files with 1062 additions and 671 deletions

8
hello.rpg Normal file
View File

@@ -0,0 +1,8 @@
CTL-OPT DFTACTGRP(*NO);
DCL-S greeting CHAR(25) INZ('Hello, World!');
DCL-PROC main EXPORT;
DSPLY greeting;
RETURN;
END-PROC;