polserver/testsuite/escript/misc/not.src
2015-12-19 02:31:08 +01:00

8 lines
79 B
Text

if (not (5 < 3))
print( "ok");
endif
if (!(5<3))
print( "ok");
endif