mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
13 lines
177 B
Text
13 lines
177 B
Text
var a array;
|
|
|
|
if (5 in a)
|
|
print( "Failure! (1)" );
|
|
else
|
|
print( "Success! (1)" );
|
|
endif
|
|
|
|
if (0 in a)
|
|
print( "Failure! (2)" );
|
|
else
|
|
print( "Success! (2)" );
|
|
endif
|