Files
sigils/examples/quaternion.rs
Myrddin Dundragon 6cdd077577 [#2] Added Licensing.
I decided on the Apache-2.0 license and have stamped all the files to
now point to that license.
2025-07-29 12:38:11 -04:00

14 lines
232 B
Rust

// SPDX-License-Identifier: Apache-2.0
// Sealed with Magistamp.
use sigils::quaternion::{Quaternion};
pub fn main()
{
let quat: Quaternion<f64>;
quat = Quaternion::<f64>::default();
println!("Quaternion: {}", quat);
}