Actually just three programming languages in a trenchcoat
at main 14 lines 245 B view raw
1proc main!() { 2 let mut out = 0 3 let mut x = 10 4 5 while true { 6 x -= 1 7 if (x == 0) { break unit } 8 if (x % 5 == 0) { continue unit } 9 if (x % 3 == 0) { continue unit } 10 out += x 11 } 12 13 exit out 14}