Function (#')
[jscl.git] / test.lisp
index 0f19c5f..3a990fe 100644 (file)
--- a/test.lisp
+++ b/test.lisp
@@ -21,6 +21,8 @@
 
 (debug ((lambda (x) x) 9999))
 
+(debug #'f)
+
 ;;; Macros
 (debug "---MACROS---")
 
@@ -57,6 +59,9 @@
 
 (debug (progn 1 2 3 123))
 
+(debug (let ((x 99999))
+         (incf x)))
+
 ;;; &rest lambda-list
 
 (debug (lambda (&rest x) x))