fork download
  1. (defmacro yoba ()
  2. (let ((body (read)))
  3. `(progn (format t "Body is ~a~%" ',body)
  4. ,body)))
  5.  
  6. (defun yoba-boba ()
  7. (yoba))
  8.  
  9. (yoba-boba)
Success #stdin #stdout 0s 10472KB
stdin
(yoba)
(print 'azazaz)
stdout
Body is (YOBA)
Body is (PRINT 'AZAZAZ)

AZAZAZ