polserver/testsuite/escript/struct/struct007.src

8 lines
97 B
Text
Raw Permalink Normal View History

program foo()
var t := struct{ a, b := 7, c := "abc" };
t.a := 5;
print( t );
endprogram