fork download
  1.  
  2. (define x '(a b c))
  3. (define y 'z)
  4.  
  5. (print `(y . ,@x))
Success #stdin #stdout 0s 7744KB
stdin
Standard input is empty
stdout
(y unquote-splicing x)