@verb #1155:"plur" any any any rxdo #9620 @program #1155:"plur" any any any "For changing the end of a verb to be plural so it sounds more... you know, proper. ( Note: May not work for all verbs. I have not really tested it. )" "Returns modified/pluralized verb" if ((arg = tostr(@args))[$] == "s" || arg[$ - 1..$] == "sh") return arg + "es" elseif (arg[$] == "y" && !(arg[$ - 1] in {"a", "e", "i", "o", "u"})) return arg[1..$ - 1] + "ies" else return arg + "s" endif "Last modified by Velusip (#9620) on Tue Mar 11 17:35:36 2003 MST." .