5 lines
141 B
Text
5 lines
141 B
Text
fn main() {
|
|
let now = chrono::Utc::now();
|
|
println!("{}", now.format("%Y-%m-%d"));
|
|
println!("{}", now.format("%A, %B %d, %Y"));
|
|
}
|