polserver/testsuite/escript/string/string05.src

14 lines
200 B
Text
Raw Permalink Normal View History

var a := "testvalue";
if ( "FRED" < "FREDDY" )
print( "1: Success!" );
else
print( "1: Failure!" );
endif
if ( "FREDDY" < "FRED" )
print( "2: Failure!" );
else
print( "2: Success!" );
endif