hit counter

Timeline

My development logbook

The Core of Lisp

The core of lisp is just 7 functions:

1
2
3
4
5
6
7
(quote x)
(atom x)
(eq x y)
(cons x y)
(cond (x y) (w z) (t q))
(car x)
(cdr x)