mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
181 B
Text
11 lines
181 B
Text
|
|
program foo()
|
|
var d := 57+8, e := "abc";
|
|
var t := struct{ a:=4, b:=9, c:=12 };
|
|
|
|
print( t["b"] );
|
|
print( t["B"] );
|
|
t[ "c" ] := 42;
|
|
print(t);
|
|
|
|
endprogram
|