open_in_new
content_copy
x = 0 while(x < 10){ print(x) x = x + 1 if(x == 5){ print(x) break } }