1970-01-01ãã1ã¶æéã®è¨äºä¸è¦§
; sicp-lib.scm ; å ±éé¢æ°ç¾¤ (define (abs x) (if (< x 0) (- x) x)) (define (square x) (* x x)) (define (cube x) (* x x x)) (define (sqrt x) (define (sqrt-iter old new x) (if (good-enough? old new) new (sqrt-iter new (improve new x) x))) (deâ¦