Rust by Example: *Coming* I/O

I/O

fn main() {
    println!("I/O");
}

I/O

$ rustc io.rs
$ ./io
I/O
Go to Index | Next: *Coming* Macros