Rust by Example: *Coming* Lifetimes

Lifetimes

fn main() {
    println!("Lifetimes");
}

Lifetimes

$ rustc lifetimes.rs
$ ./lifetimes
Lifetimes
Go to Index | Next: *Coming* Concurrency