polserver/testsuite/escript/string/string04.src

14 lines
195 B
Text
Raw Permalink Normal View History

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