mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
13 lines
197 B
Text
13 lines
197 B
Text
var a := "testvalue";
|
|
|
|
if ("FRED" < "WILMA")
|
|
print( "1: Success");
|
|
else
|
|
print( "1: Failure!");
|
|
endif
|
|
|
|
if ("WILMA" < "FRED")
|
|
print( "2: Failure" );
|
|
else
|
|
print( "2: Success" );
|
|
endif
|