петля ржавчины над струной

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