Added base rust file for projecteuler

This commit is contained in:
Philippe Zwietering
2023-03-14 10:30:08 +01:00
parent 4154392eed
commit f18a87ba4d

8
projecteuler/base.rs Normal file
View File

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