mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
140 B
Text
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
|