My buggy commit on my pretend pull request branch.

This commit is contained in:
Greg Hendershott 2013-07-02 22:09:25 -04:00
parent 0e341cf014
commit b3387b1192

View File

@ -8,7 +8,11 @@
(define (minus1 x)
(sub1 x))
(define (multiply1 x)
#f) ;buggy
(module+ test
(require rackunit)
(check-equal? (plus1 1) 2)
(check-equal? (minus1 1) 0))
(check-equal? (minus1 1) 0)
(check-equal? (multiply1 1) 1))