rusts/vec.rs
2026-09-10 17:30:38 +02:00

5 lines
85 B
Rust

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