1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 13:57:38 +02:00

Fix error in unbound variable description, closes #2577

This commit is contained in:
Divay Prakash
2018-10-09 22:43:58 +05:30
parent ed67bee58d
commit e2fbb26b6a

View File

@@ -181,8 +181,8 @@ nil ; false; also, the empty list: ()
;;; You can also use unicode characters. ;;; You can also use unicode characters.
(defparameter *AΛB* nil) (defparameter *AΛB* nil)
;;; Accessing a previously unbound variable is an undefined behavior, but ;;; Accessing a previously unbound variable results in an UNBOUND-VARIABLE
;;; possible. Don't do it. ;;; error, however it is defined behavior. Don't do it.
;;; You can create local bindings with LET. In the following snippet, `me` is ;;; You can create local bindings with LET. In the following snippet, `me` is
;;; bound to "dance with you" only within the (let ...). LET always returns ;;; bound to "dance with you" only within the (let ...). LET always returns