fork(1) download
  1. members = ['egoing', 'leezche', 'graphittie']
  2. i = 0
  3. while i < len(members):
  4. print(members[i])
  5. i = i + 1
  6.  
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
egoing
leezche
graphittie