fixing test case

This commit is contained in:
Danny Yoo 2011-02-08 23:18:05 -05:00
parent ba3c1d8117
commit 45e8973d40

2
cm.rkt
View File

@ -500,7 +500,7 @@
(+ (gauss (- n 1))
n))))
(test '(define (fib m)
(test '(define (fib n)
(if (< n 2)
1
(+ (fib (- n 1))