markcornwell / pilar

incremental development of scheme compiler
1 stars 0 forks source link

Implement cons, car, cdr, pair? #7

Closed markcornwell closed 9 years ago

markcornwell commented 9 years ago

Implement the primitives for cons nodes and and make sure they pass the tests. Do not implement garbage collection yet. Just keep allocating new nodes from the heap.

markcornwell commented 9 years ago

The cons, car, cdr, pair? implementation and test was completed last week and checked in as part a merge of the branch heap-allocation. Implementation of vectors is being done in a branch called vectors.