polserver/testsuite/escript/string/string16.src

14 lines
183 B
Text
Raw Permalink Normal View History

var a := "testvalue";
if ( a[3] < "t" )
print( "1: Success" );
else
print( "1: Failure!" );
endif
if ( a[2] > "f" )
print( "2: Failure" );
else
print( "2: Success" );
endif