polserver/testsuite/escript/dict/dict008.src
2015-12-19 02:31:08 +01:00

19 lines
362 B
Text

program tc_etest( who )
var searchin := dictionary;
searchin["woot"] := dictionary;
searchin["roar"] := dictionary;
var key := dictionary;
key["cheese"] := 400;
print( "Approaching check..." );
if( !searchin[key] )
print( "No match." );
else
print( "Match" );
endif
print( "Finished check." );
endprogram