7 lines
137 B
Rust
Executable File
7 lines
137 B
Rust
Executable File
#!/usr/bin/env run-cargo-script
|
|
// cargo-deps: time="0.1.25"
|
|
extern crate time;
|
|
fn main() {
|
|
println!("{}", time::now().rfc822z());
|
|
}
|