struct Point { field x; field y; } def main() -> Point { Point p = Point { x: 1, y: 0 }; return p; }