2018-02-22 06:09:53 +00:00
|
|
|
// move_semantics2.rs
|
2022-07-12 13:25:31 +00:00
|
|
|
// Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand for a hint.
|
2015-09-23 02:20:04 +00:00
|
|
|
|
2023-02-18 17:43:34 +00:00
|
|
|
// Expected output:
|
2023-06-12 10:07:18 +00:00
|
|
|
// vec0 has length 3, with contents `[22, 44, 66]`
|
|
|
|
// vec1 has length 4, with contents `[22, 44, 66, 88]`
|
2023-02-18 17:43:34 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2018-11-09 19:31:14 +00:00
|
|
|
fn main() {
|
2015-09-23 02:20:04 +00:00
|
|
|
let vec0 = Vec::new();
|
|
|
|
|
|
|
|
let mut vec1 = fill_vec(vec0);
|
|
|
|
|
2023-06-12 10:07:18 +00:00
|
|
|
println!("{} has length {}, with contents: `{:?}`", "vec0", vec0.len(), vec0);
|
2015-09-23 02:20:04 +00:00
|
|
|
|
|
|
|
vec1.push(88);
|
|
|
|
|
2023-06-12 10:07:18 +00:00
|
|
|
println!("{} has length {}, with contents `{:?}`", "vec1", vec1.len(), vec1);
|
2015-09-23 02:20:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
|
|
|
|
let mut vec = vec;
|
|
|
|
|
|
|
|
vec.push(22);
|
|
|
|
vec.push(44);
|
|
|
|
vec.push(66);
|
|
|
|
|
|
|
|
vec
|
|
|
|
}
|