Skip to main content

rMaths/
lib.rs

1#[cfg(rMaths)]
2mod rMaths {
3	#[rMaths]
4	pub mod funcs;
5	use funcs::*;
6	// Imported functions
7
8	pub mod consts;
9	use consts::*;
10	// Imported constants
11}