=_1_is_not_2.("water", "wet") -> "Water is not wet." =_1_is_not_2.("Spreadsheet Lisp", "fun to use") -> "Spreadsheet Lisp is not fun to use."
DEFINE(
_1_is_not_2.,
LAMBDA(
_1,
_2,
FORMAT(
"{1} is not {2}.",
CAPITALIZE(_1),
_2)))
Help us optimize this function