0
我必須爲Scheme中的每個函數創建測試用例。我收到一個錯誤:check-equal?:bad syntax 我在做什麼錯? 這是我有:計劃球拍Rackunit
(require rackunit)
;Zip takes two lists and pairs each of the nth
;elements together
(define (zip . xss)
(apply map list xss)
)
(define (zip-test2)
(check-eq? (zip '(a b c) '(1 2 3)))
)