mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
164 B
Text
11 lines
164 B
Text
|
|
// Test hybrid comparison (equal operator)
|
||
|
|
|
||
|
|
var b := "value2";
|
||
|
|
var c := "value";
|
||
|
|
|
||
|
|
if (c == b[1,5])
|
||
|
|
print( "1: Success!");
|
||
|
|
else
|
||
|
|
print( "1: Failure!");
|
||
|
|
endif
|