mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
9 lines
No EOL
115 B
Text
9 lines
No EOL
115 B
Text
function foo( byref a )
|
|
a := 5;
|
|
endfunction
|
|
|
|
var b := struct { c, d };
|
|
b.c := 17;
|
|
print(b);
|
|
foo(b.c);
|
|
print(b); |