mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
No EOL
124 B
Text
10 lines
No EOL
124 B
Text
|
|
var arr:={1,2,3};
|
|
var text:="";
|
|
foreach a in arr
|
|
text+=" "+a;
|
|
endforeach
|
|
print(text);
|
|
text:="";
|
|
text+=arr[1];
|
|
print(text); |