fork(1) download
  1. ; your code goes here
  2.  
  3. (let ((op 'car)) (defmacro pseudocar (lst) `(,op ,@lst)))
  4.  
  5. (format t "~a" (macroexpand-1 '(pseudocar (a b))))
Success #stdin #stdout 0.02s 10544KB
stdin
Standard input is empty
stdout
(CAR A B)