Added base rust file for projecteuler
This commit is contained in:
8
projecteuler/base.rs
Normal file
8
projecteuler/base.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
use std::time::Instant;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, this is Patrick!");
|
||||
let now = Instant::now();
|
||||
|
||||
println!("Time passed: {:?}", now);
|
||||
}
|
||||
Reference in New Issue
Block a user