Name: Anonymous 2014-02-26 10:37
http://kingjamesprogramming.tumblr.com/
40:3 The voice of one crying in the wilderness, Prepare ye the way of a man deferreth his anger; and it is used as follows: (define (cc amount coin-values) (cond ((= amount 0) 1) ((or (< amount 0) (no-more? coin-values)) 0) (else (+ (cc amount (except-first-denomination coin-values)) (cc (- amount (first-denomination coin-values)) coin-values)))))
40:3 The voice of one crying in the wilderness, Prepare ye the way of a man deferreth his anger; and it is used as follows: (define (cc amount coin-values) (cond ((= amount 0) 1) ((or (< amount 0) (no-more? coin-values)) 0) (else (+ (cc amount (except-first-denomination coin-values)) (cc (- amount (first-denomination coin-values)) coin-values)))))