SE701:closure.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 339 bytes +339 New page: ;;; A simple closure in Lisp (defun make-counter () (let ((count 0)) (list #'(lambda () (setq count (1+ count))) #'(lambda () (setq count (1- count))) #'(lambda () count)...