Created
June 21, 2014 14:36
-
-
Save wiltonbsilva/eb470633c94d69a6257e to your computer and use it in GitHub Desktop.
sicp notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (square x) | |
(* x x)) | |
(define (sum-squares x y) | |
(+ (square x) (square y))) | |
(define (test-square) | |
(= 144 (square 12))) | |
(define (test-sum-squares) | |
(= 13 (sum-squares 2 3))) | |
(test-square) | |
(test-sum-squares) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment