polserver/testsuite/escript/struct/struct005.src

9 lines
114 B
Text
Raw Permalink Normal View History

program foo()
var d := 57 + 8, e := "abc";
var t := struct{ a, b, c };
t.a := 5;
print( t );
endprogram