ベクタの変更2022/2/18 21:38:00 値の変更や追加には、変数宣言時にmutをつける必要がある。 let mut v = Vec::new(); v.push(5); v.push(6); v.push(7); v.push(8);