fork(2) download
  1. i = 10
  2. while i > 0:
  3. print str(i),
  4. i = i - 1
  5. else:
  6. print "zero"
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
10 9 8 7 6 5 4 3 2 1 zero