5 lines
94 B
Text
5 lines
94 B
Text
|
|
fn main() {
|
||
|
|
let s = "文字化け"; // UTF-8
|
||
|
|
println!("Byte Length: {}", s.len());
|
||
|
|
}
|