Skip to content

Instantly share code, notes, and snippets.

@realeroberto
Last active February 6, 2016 14:21
Show Gist options
  • Save realeroberto/c7f098f737f181985e1f to your computer and use it in GitHub Desktop.
Save realeroberto/c7f098f737f181985e1f to your computer and use it in GitHub Desktop.
Tail-recursive factorial in Scheme.
;
; Tail-recursive factorial in Scheme.
;
(define (factorial n)
(if (= n 1)
1
(* n (factorial(- n 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment