S.I/Lisp/

DIFFERENCE




=DIFFERENCE(15, 10)
-> 5

=DIFFERENCE(10, 10)
-> 0

=DIFFERENCE(5, 10)
-> -5
        



DEFINE(
    DIFFERENCE,
    LAMBDA(
        minuend,
        subtrahend,
        minuend - subtrahend))
        



Help us optimize this function