mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
19 lines
362 B
Text
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
|
|
|