1 2 3 4 5 6 7 8 9 10 11 12 13
let var x := 0 in while 1 do ( for i := 0 to 10 do ( x := x + i; if x >= 42 then break ); if x >= 51 then break ) end