struct Point { x: f64, y: f64 } fn main() { let s = Point {x: 5.0, y: 5.0}; println!("s.x: {}; s.y: {}", s.x, s.y) }