1 2 3 4 5 6
use flywheel::Vector; fn main() { let vector = Vector::new(1.0, 2.0, 3.0); println!("{:?}", vector); }