Problem So, here’s my code: public class NList : SExp, IEnumerable<Object> { private Object _car; private NList _cdr; IEnumerator<Object> IEnumerable<Object>.GetEnumerator() […]

Problem Given the following recursive definition of sum: (define (sum term a next b) (if (> a b) 0 (+ […]

Problem Background: This began with James Colgan‘s Lisp-Dojo for Ruby. My implementation can be found here. I then moved on […]