mirror of
https://github.com/PacktPublishing/Rust-High-Performance.git
synced 2026-01-25 02:34:19 +09:00
6 lines
120 B
Rust
6 lines
120 B
Rust
fn main() {
|
|
let mut my_vector = vec![0, 16, 34, 13, 95];
|
|
my_vector.push(22);
|
|
println!("{:?}", my_vector);
|
|
}
|