Files
contests/projecteuler/base.rs
2023-03-14 12:50:06 +01:00

9 lines
168 B
Rust

use std::time::Instant;
fn main() {
println!("Hello, this is Patrick!");
let now = Instant::now();
println!("Time passed: {:?}", Instant::now() - now);
}