Rust by Example: *Coming* Generics

Generics

fn main() {
    println!("Generics")
}

Generics

$ rustc generics.rs
$ ./generics
Generics
Go to Index | Next: *Coming* Async