fn main() { 'outer: for x in 1..10 { 'inner: for y in 5..10 { println!("{}{}", x, y); if x == y { break 'outer; } } } }