Last active
August 29, 2015 14:15
-
-
Save kouddy/1e455696fd00e58cc917 to your computer and use it in GitHub Desktop.
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
;;;Re-written version of the code | |
(define (a-plus-abs-b a b) | |
(if (> b 0) | |
(+ a b) | |
(- a b))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment