Code Review

Compare your solutions

    #| Для этого упражнения нет проверок.
Любое решение будет считаться успешным ответом. |#
(define (a-plus-abs-b a b)
        ((if (> b 0)
             +
             -) a
                b))

#| changing operator accordingly 
to the sign of the operand 'b' =>
one of the solutions to get (a + |b|) |#