init: cobol-java migration verification platform v3 (42 tests, JCL module)

This commit is contained in:
hangshuo652
2026-05-27 08:42:41 +08:00
parent faeedbc77b
commit 7fcdb41a85
21 changed files with 870 additions and 148 deletions
+6 -3
View File
@@ -7,7 +7,10 @@
05 BR-STATUS PIC X.
05 BR-DATE PIC 9(8).
PROCEDURE DIVISION.
DISPLAY BR-AMT.
DISPLAY BR-STATUS.
DISPLAY BR-DATE.
MOVE 1500 TO BR-AMT.
MOVE 'A' TO BR-STATUS.
MOVE 20260522 TO BR-DATE.
DISPLAY BR-AMT
DISPLAY BR-STATUS
DISPLAY BR-DATE
STOP RUN.