Bug fixed in projecteuler in base.rs

This commit is contained in:
Philippe Zwietering
2023-03-14 12:50:06 +01:00
parent f18a87ba4d
commit 3af4295850

View File

@@ -4,5 +4,5 @@ fn main() {
println!("Hello, this is Patrick!"); println!("Hello, this is Patrick!");
let now = Instant::now(); let now = Instant::now();
println!("Time passed: {:?}", now); println!("Time passed: {:?}", Instant::now() - now);
} }