fork download
  1. print "Hello World"
  2. x = 0
  3. while x < 10:
  4. print x
  5. x += 1
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
Hello World
0
1
2
3
4
5
6
7
8
9