Add the following code to src/main.rs: use chrono::Utc; fn main() { println!("Hello, time now is {:?}", Utc::now()); } The use statement tells the compiler ...
確定! 回上一頁