mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
12 lines
191 B
Text
12 lines
191 B
Text
|
|
|
||
|
|
function bar( r )
|
||
|
|
return r*3;
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
program foo()
|
||
|
|
var t := struct{ a, b := struct { f := 6+7, g := bar(6), h := "xyz" }, c := "abc" };
|
||
|
|
t.a := 5;
|
||
|
|
print(t);
|
||
|
|
|
||
|
|
endprogram
|