nlfiedler / bakeneko

Scheme R7RS interpreter in Go
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Implement basic Lithp procedures #13

Open nlfiedler opened 11 years ago

nlfiedler commented 11 years ago

The builtin procedures atom, car, cdr, eq, and label are still missing from bakeneko.

nlfiedler commented 10 years ago

Scheme does not have a 'label' procedure, but does have 'define', which exists in bakeneko. Also, eq is called eq?, and there is also eqv? and equal?. There is no 'atom' procedure in Scheme. So implementing car, cdr, eq?, eqv?, and equal? should suffice for this issue.