mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
187 B
Text
14 lines
187 B
Text
|
|
var a := "testvalue";
|
||
|
|
|
||
|
|
if (a[3] == "s")
|
||
|
|
print( "1: Success");
|
||
|
|
else
|
||
|
|
print( "1: Failure!");
|
||
|
|
endif
|
||
|
|
|
||
|
|
if (a[2] == "f")
|
||
|
|
print( "2: Failure" );
|
||
|
|
else
|
||
|
|
print( "2: Success" );
|
||
|
|
endif
|