polserver/testsuite/escript/string/string03.src

14 lines
185 B
Text
Raw Permalink Normal View History

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