fork download
  1. i = 0
  2. while i < 3:
  3. print('Hello world')
  4. i = i + 1
  5.  
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
Hello world
Hello world
Hello world