Skip to content

Instantly share code, notes, and snippets.

@tetsu-miyagawa
Created July 2, 2015 04:29
Show Gist options
  • Save tetsu-miyagawa/f6ea94b956e8867bc966 to your computer and use it in GitHub Desktop.
Save tetsu-miyagawa/f6ea94b956e8867bc966 to your computer and use it in GitHub Desktop.
SICP Exercise 1.4
(define (a-plus-abs-b a b)
((if (> b 0) + -) a b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment