mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
8 lines
113 B
Text
8 lines
113 B
Text
|
|
// test modification of a substring after an assignment.
|
||
|
|
|
||
|
|
var a := "testvalue";
|
||
|
|
|
||
|
|
a["val"] := "hello";
|
||
|
|
|
||
|
|
|
||
|
|
print(a);
|