List operations
Posted in Computing on Jul 24th, 2009 No Comments »
The other day Eddie was lamenting that certain Ginger list operations were confusing to read. Patterns like (tail (tail x)). This is a standard gripe in Scheme and Lisp. The same operation in Scheme is (cdr (cdr x)) which I dare say is even less readable but at least can be shortened [...]