Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
(define (mult a b) (cond ((= b 0) 0) ((even? b) (dbl (* a (halve b)))) (else (+ (mult a (- b 1)) a)))) (define (dbl x) (* x 2)) (define (halve x) (/ x 2)) (mult 3 7)
This paste will be private.
From the Design Piracy series on my blog: