Loop karat di atas string
let hello = "नमस्ते";
// Characters
for c in hello.chars() {
println!("{}", c);
}
// Bytes
for b in hello.bytes() {
println!("{}", b);
}
Glamorous camel