9 lines
125 B
COBOL
9 lines
125 B
COBOL
|
*> Test Program
|
||
|
identification division.
|
||
|
program-id. ok-test.
|
||
|
|
||
|
procedure division.
|
||
|
display "OK"
|
||
|
goback.
|
||
|
end program ok-test.
|