S.I/Lisp/

_1_is_the_2_of_3.




=_1_is_the_2_of_3.("women", "plural", "woman")
-> "Women is the plural of woman."

=_1_is_the_2_of_3.("up", "opposite", "down")
-> "Up is the opposite of down."

=_1_is_the_2_of_3.("Abraham", "father", "Isaac")
-> "Abraham is the father of Isaac."
        



DEFINE(
    _1_is_the_2_of_3.,
    LAMBDA(
        _1,
        _2,
        _2,
        FORMAT(
            "{1} is the {2} of {3}.",
            CAPITALIZE(_1),
            _2,
            _3)))
        



Help us optimize this function