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