DEFUN macro
authorDavid Vazquez <davazp@gmail.com>
Sun, 16 Dec 2012 23:31:11 +0000 (23:31 +0000)
committerDavid Vazquez <davazp@gmail.com>
Sun, 16 Dec 2012 23:31:11 +0000 (23:31 +0000)
lispstrack.lisp
test.lisp

index 44be5a6..7b5fbf9 100644 (file)
     ((symbolp x)
      (lookup-function x fenv))))
 
+#+common-lisp
 (defmacro eval-when-compile (&body body)
   `(eval-when (:compile-toplevel :execute)
      ,@body))
       (backquote-expand-1 (cadr form))
       form))
 
+(defmacro backquote (form)
+  (backquote-expand-1 form))
+
 (define-transformation backquote (form)
   (backquote-expand-1 form))
 
index 6d386cb..3abd8f5 100644 (file)
--- a/test.lisp
+++ b/test.lisp
@@ -1,3 +1,20 @@
+;;; Library
+
+(eval-when-compile
+  (%compile-defmacro 'defmacro
+     (lambda (name args &rest body)
+       `(eval-when-compile
+          (%compile-defmacro ',name (lambda ,args ,@body))))))
+
+(defmacro defun (name args &rest body)
+  `(progn
+     (eval-when-compile
+       (%compile-defun ',name))
+     (fsetq ,name (lambda ,args ,@body))))
+
+
+;;; Tests
+
 (lambda (x y) x)
 
 (debug "hola")
 ;;; Macros
 (debug "---MACROS---")
 
-(eval-when-compile
-  (%compile-defmacro 'defmacro
-                     (lambda (name args &rest body)
-                       (list 'eval-when-compile
-                             (list '%compile-defmacro (list 'quote name)
-                                   (list* 'lambda args body))))))
+
 
 (defmacro incf (x)
   (list 'setq x (list '+ 1 x)))
 (debug (lambda (x y &rest z) x))
 
 
-(progn
-  (eval-when-compile
-    (%compile-defun 'f))
-  (fsetq f (lambda (x) (* x x))))
-
+(defun f (x) (* x x))
 (debug (f 33))
 
-;; (debug (foo))
-
 ;; (eval-when-compile
 ;;   (%compile-defmacro 'defun
 ;;                  (lambda (name args &rest body)