Data as Procedures
I was watching lecture 2b of the SICP lectures and it shows an implementation of cons, car and cdr in Scheme as procedures. So I thought I’d write the equivalent in Common Lisp to test my understanding:
(defun my-cons (a b)
#'(lambda (c)
(cond ((= c 0) a)
((= c 1) b))))
(defun my-car (x) (funcall x 0))
(defun my-cdr (x) (funcall x 1))
(print (my-car (my-cons 'gold 'silver)))
(print (my-cdr (my-cons 'everything 'nothing)))
Output is:
$ clisp pairs.lisp GOLD NOTHING
Crazy. “Constructed out of thin air”, as Abelson says.
The scheme implementation is definitely nicer. See What Is Meant by Data? Scheme has only one namespace so there’s no need for the #' and funcall clutter.
About this entry
You’re currently reading “ Data as Procedures ,” an entry on bluebones.net
- Published:
- 2006.03.02
- Category:
- Programming
2 Comments
Jump to comment form | comments rss [?] | trackback uri [?]