fork download
  1. i = 0
  2. while i < 10:
  3. if i == 4:
  4. break
  5. print(i)
  6. i = i + 1
  7. print('after while')
  8.  
Success #stdin #stdout 0.02s 8696KB
stdin
Standard input is empty
stdout
0
1
2
3
after while