1pub fn main() { 2 let point = opencascade_sys::ffi::new_point(10.0, 7.0, 23.5); 3 let y = point.Y(); 4 println!("The point's Y value is {y}"); 5}