(define car (lambda (l) (l true))) |
The list is invoked as a function with `true' supplied as an argument. `true' by definition is a selector returning the first of two arguments, which in our case is the head of the pair or list.
Georg P. Loczewski 2004-03-05