pub fn test_call()
Expand description
Test a call to this lib
ยงExample
// You can have rust code between fences inside the comments
// If you pass --test to `rustdoc`, it will even test it for you!
use code_timer as timer;
pub fn main(){
timer::test_call();
println!("main called");
}