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