polserver/testsuite/escript/string/string09.src

14 lines
178 B
Text
Raw Permalink Normal View History

var cmd := "marion walk N";
if ( cmd["marion"] )
print( "ok!" );
else
print( "failure 1!" );
endif
if ( cmd["blah"] )
print( "failure 2!" );
else
print( "ok!" );
endif