(define (a-plus-abs-b a b) ((if (> b 0) + -) a b))x #<undef>
(define (a-plus-abs-b a b) ((if (> b 0) + -) a b))
#<undef>
a plus the absolute value of b is a plus b if b is greater than 0, otherwise is a subtract b.