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