Skip to content

Instantly share code, notes, and snippets.

@davidad
Created May 21, 2013 03:58
Show Gist options
  • Save davidad/5617397 to your computer and use it in GitHub Desktop.
Save davidad/5617397 to your computer and use it in GitHub Desktop.
(define (upto n)
(letrec ((loop (lambda (k x)
(if (= k x) (list x)
(cons k (loop (+ k 1) x))) )))
(loop 1 n)))
(display (upto 10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment