mod point; use point::Point; fn main() { let point: Point = Point { x: 10, y: 25 }; let x: i32 = point.x; let y: i32 = point.y; }