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

7 lines
60 B
C

if 3==3 then
print 3;
endif
if 3==4 then
print 4;
endif