mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
8 lines
125 B
COBOL
8 lines
125 B
COBOL
*> Test Program
|
|
identification division.
|
|
program-id. ok-test.
|
|
|
|
procedure division.
|
|
display "OK"
|
|
goback.
|
|
end program ok-test.
|