mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
32 lines
464 B
Text
32 lines
464 B
Text
if (1)
|
|
print( "Success: 1!" );
|
|
endif
|
|
|
|
if (0)
|
|
print( "Failure: 0!" );
|
|
else
|
|
print( "Success: 2" );
|
|
endif
|
|
|
|
if (1)
|
|
print( "Success: 3" );
|
|
else
|
|
if (1)
|
|
print( "Failure: 1!" );
|
|
else
|
|
print( "Failuer: 2!" );
|
|
endif
|
|
endif
|
|
|
|
print( "Out of if--then--if--then--else!" );
|
|
if (0)
|
|
print( "Failure: 3!" );
|
|
else
|
|
if (1)
|
|
print( "Success: 4!" );
|
|
else
|
|
print( "Failure: 4!" );
|
|
endif
|
|
endif
|
|
|
|
print( "Success: 5!" );
|