RosettaCodeData/Task/Literals-Integer/COBOL/literals-integer-2.cobol

3 lines
147 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
if 1234 = 1,2,3,4 then display "Decimal point is not comma" end-if
if 1234 = 1;2;3;4 then display "literals are equal, semi-colons ignored" end-if