diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-18 01:00:41 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-18 11:41:27 +0200 |
commit | 16183c31907ea7cac323f13f90482f3c27b5e7a0 (patch) | |
tree | ae1ad5cf75c582253e1b9c6ac98f8fb051762d30 | |
parent | 32a1c8b32efe22d957539b94c0dd69d202e34754 (diff) |
init.lisp: Test simple top-level forms and load util.lisp.
-rw-r--r-- | init.lisp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -18,6 +18,10 @@ (in-package #:common-lisp) +100 + +(ns-log 100) + (%fset 'test (compile '(sys::%lambda args))) (ns-log (test 'a 'b 'c)) (%fset 'test2 (compile '(sys::%lambda args args))) @@ -52,7 +56,7 @@ (ns-log x))))) (test11) -;; (load "util.lisp") +(load "util.lisp") ;; (load "defun-0.lisp") ;; (load "list-functions.lisp") ;; (load "destructuring-bind.lisp") |