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