1/5

You know every rune now — if, match, loop, while, for. The Overlord's maze demands you combine them: a decision inside a repetition.

for n in 1..=6 {
    if n % 2 == 0 {
        println!("even");
    } else {
        println!("{}", n);
    }
}