mathx 1.1.0

A mathematics library designed to work with no_std
Documentation
1
2
3
4
5
6
7

pub mod math;
pub use math::Math;

fn main() {
	print!("{0}", Math::sin(0.0));
}