struct Point { x: u64; y: u64; } test = Point { x: 1; y: 2; }; foo = test.x; print foo;