Skip to content

Instantly share code, notes, and snippets.

View superchris's full-sized avatar

Chris Nelson superchris

View GitHub Profile
(define (cubert x)
(define (improve guess x)
(/
(+ (/ x (* guess guess)) (* 2 guess))
3)
)
(define (cube x)
(* x x x))
(define (good-enough? guess x)