fn main() { 'bucle_externo: for x in 0..10 { 'bucle_interno: for y in 0..10 { if x % 2 == 0 { continue 'bucle_externo; } if y % 2 != 0 { continue 'bucle_interno; } println!("X: {}, Y: {}", x, y); } } }