Learning Scheme
Sunday, December 14th, 2008Exercise: Write a function that returns the length of a list (without using the scheme length function).
My try:
(define mylengh
(lambda (ilist)
(letrec ((mylengh-rec
(lambda (rlist nr)
[...]