Skip to content

Instantly share code, notes, and snippets.

@mrklein
Created September 16, 2012 13:37
factorial in Racket
#lang racket
(define (factorial n)
(define (i_factorial n acc)
(if (= 0 n)
acc
(i_factorial (- n 1) (* n acc))))
(i_factorial n 1))
(map (lambda (n)
(printf "~a~n" (factorial n))) (list 1 12 123 1234 12345))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment