cobol-interpreter-lab/lab-5/samples/print_if_true.c

6 lines
49 B
C

if 1 then
print 5;
print 3;
print 1;
endif