type Point { x: i32, y: i32, } pub fn main(world: World) -> Void raises { let point: Point = Point { x: 1, y: 2 } if point.x < point.y { check world.out.write("shape ok\n") } }