diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-17 15:19:29 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-18 11:41:27 +0200 |
commit | f3e77debaacf3e967c046d77169c529790ff1fc9 (patch) | |
tree | 7e6ba14e5417b84249ed6658d72f0785187c280c | |
parent | 173e0143fe9930772e405d611f58f72f6f49a7f4 (diff) |
init.lisp: Test the CONS intrinsic.
-rw-r--r-- | init.lisp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -41,6 +41,8 @@ (%fset 'test9 (compile '(sys::%lambda args (if args 'some-args 'no-args)))) (ns-log (test9)) (ns-log (test9 1 2 3)) +(%fset 'test10 (compile '(sys::%lambda args (cons 1 2)))) +(ns-log (test10)) ;; (load "util.lisp") ;; (load "defun-0.lisp") |