fork(1) download
  1. ; your code goes here
  2. (defvar x '(1 2 3 4 5))
  3. (defvar y (format nil "~{~A~^, ~}" x))
  4. (princ y)
Success #stdin #stdout 0s 10512KB
stdin
Standard input is empty
stdout
1, 2, 3, 4, 5