rMaths/
lib.rs

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

	pub mod consts;
	use consts::*;
	// Imported constants
}