sity 0.2.0

International System of Units (SI) Typing
Documentation
1
2
3
4
5
6
7
8
pub use sity::*;

fn main() {
    let m = SI::_m::<_, Centi>(1.0);
    let s = Second::new(2.0);
    let x = m * m / s;
    println!("x = {}", x);
}