polserver/testsuite/escript/struct/struct008.src

12 lines
190 B
Text
Raw Permalink Normal View History

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