fork(1) download
  1. members = ['egoing', 'leezche', 'graphittie']
  2. i = 0
  3. while i < members.length do
  4. puts(members[i])
  5. i = i + 1
  6. end
  7.  
Success #stdin #stdout 0.02s 7408KB
stdin
Standard input is empty
stdout
egoing
leezche
graphittie