/* #include "std/io.toc"; */ Point ::= struct { x, y: int; } f ::= fn() p: Point { p.x = 13; } main ::= fn() { p := f(); use p; }