SE701:let.lisp
Jump to navigation
Jump to search
;;; LET and LET* (let ((x 100)) (let* ((x 1) (y (+ x 1))) (list x y)))
`(let ((x 100)) (let ((x 1) (y (+ x 1))) (list x y)))
;;; LET and LET* (let ((x 100)) (let* ((x 1) (y (+ x 1))) (list x y)))
`(let ((x 100)) (let ((x 1) (y (+ x 1))) (list x y)))