mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
9 lines
95 B
Text
9 lines
95 B
Text
var foo := "abc";
|
|
|
|
print(foo[1]);
|
|
print(foo[2]);
|
|
|
|
print(foo[1]+foo[2]);
|
|
|
|
print(foo[1,2]-"b");
|
|
|