SE701:let.lisp: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

15 February 2008

  • curprev 19:4019:40, 15 February 2008Mark talk contribs 126 bytes +126 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)))