Search found 1 match
- Mon Jan 12, 2009 7:32 pm
- Forum: Anything else we might add?
- Topic: Hi everyone. I think I found a bug in docs.
- Replies: 1
- Views: 2917
Hi everyone. I think I found a bug in docs.
Manipulate functions after definition (define (double x) (+ x x)) → (lambda (x) (+ x x)) (first double) → (x) (last double) → (+ x x) ;; make a ''fuzzy'' double (setf (double 1) '(mul (normal x (div x 10)) 2)) (double 10) → 20.31445313 (double 10) → 19.60351563 This example is in code patterns. Sect...