code_timer/
lib.rs

1
2/// Test a call to this lib
3/// # Example
4///
5/// ```
6/// // You can have rust code between fences inside the comments
7/// // If you pass --test to `rustdoc`, it will even test it for you!
8/// use code_timer as timer;
9/// pub fn main(){
10///     timer::test_call();
11///     println!("main called");
12/// }
13/// ```
14    
15pub fn test_call(){
16    println!("test_call was called v0.1.1");
17}