5 lines
85 B
Rust
5 lines
85 B
Rust
fn main() {
|
|
let c: Vec<i32> = vec![];
|
|
println!("c {}", c.get(0).unwrap());
|
|
}
|