polserver/testsuite/escript/struct/struct008.src
2015-12-19 02:31:08 +01:00

11 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