fork download
  1. (for-each println
  2. (list '(a b c d . e)
  3. (list* 'a 'b 'c 'd 'e)
  4. (cons 'a
  5. (cons 'b
  6. (cons 'c
  7. (cons 'd 'e))))))
Success #stdin #stdout 0.21s 96832KB
stdin
Standard input is empty
stdout
'(a b c d . e)
'(a b c d . e)
'(a b c d . e)