`len` メソッドでサイズを返す。 ```rust let s = vec!['a', 'b', 'c']; let n = s.len(); printn!("{}", n); => 3 ```