SE701:let.lisp: Difference between revisions

From Marks Wiki
Jump to navigation Jump to search
New page: ;;; 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)))
 
(No difference)

Latest revision as of 19:40, 15 February 2008

;;; 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)))