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