SE701:let.lisp

From Marks Wiki
Revision as of 19:40, 15 February 2008 by Mark (talk | contribs) (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))))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)))