whalesong/tests/coersing/fact.rkt
2011-07-11 22:03:23 -04:00

11 lines
159 B
Racket

#lang planet dyoo/whalesong
(provide fact)
(define (fact x)
(cond
[(= x 0)
1]
[else
(* x (fact (sub1 x)))]))
;;(printf "test: ~s\n" (fact 4))