fork download
  1. (defun f (x)
  2. (+ x 1))
  3.  
  4. (defmacro f-macro (x)
  5. `(f ,x))
  6.  
  7. (format t "~a" (flet ((f (x) (- x 1))) (f-macro 10)))
Success #stdin #stdout 0.02s 10544KB
stdin
Standard input is empty
stdout
9