Files
runrs/external/rust-script/examples/time-without-main.ers
2022-08-06 01:14:04 +08:00

14 lines
305 B
Rust

#!/usr/bin/env rust-script
/// This is a regular crate doc comment, but it also contains a partial
/// Cargo manifest. Note the use of a *fenced* code block, and the
/// `cargo` "language".
///
/// ```cargo
/// [dependencies]
/// time = "0.1.25"
/// ```
use time::now;
println!("{}", now().rfc822z());