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