rfast 1.0.0

Run Rust files like scripts — instant caching, inline dependencies, zero boilerplate
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env cargo eval --
//! 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"
//! ```
extern crate time;
fn main() {
    println!("{}", time::now().rfc822z());
}