(define (a-plus-abs-b a b)
((if (> b 0) + -) a b))
When the if function is evaluated, based on the condition, the operator + or - is applied on the operands a and b. If b > 0, + operator is used, evaluating to a+b. Otherwise, - operator is issued which yields a-b. Ultimately, we evaluate a+|b|.