polserver/testsuite/escript/compiler2/compiler2-045-integer-less-than.src
2020-08-13 15:26:09 +02:00

11 lines
140 B
Text

var a := 6;
if ( a < 5 )
print("incorrect");
endif
if ( a < 6 )
print("incorrect");
endif
if ( a < 7 )
print("correct");
endif