fork download
  1. (def x '(a b c))
  2. (def y 'z)
  3.  
  4. (println `(~y . ~@x))
Success #stdin #stdout 1.57s 87588KB
stdin
Standard input is empty
stdout
(z . a b c)