fork download
  1. print('hi')
  2. words=['hey', 'ho']
  3. for i in words:
  4. print(i)
  5.  
Success #stdin #stdout 0.02s 9232KB
stdin
Standard input is empty
stdout
hi
hey
ho