Files
contests/projecteuler/base.rs
2023-03-14 10:30:08 +01:00

9 lines
151 B
Rust

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