Instructions:
Texty has 5 functions: TextyCmd(C$) - Parse a string with texty and run an associated command if found. Returns true if it matched a command, otherwise returns false. TextyAdd CMD$, CMD_FUNC$ - Add a command to texty. CMD$ is a regex string. CMD_FUNC$ must be a command that takes a string arrayTextyAdd "({MOVE}) to ({NOUN})", "moveTo" DEF moveTo T$[] ... T$[0] is your move command ... ... T$[1] is the noun ... ENDTextyTmpl(S$) - Interpolate a string using global variable names. Must be strings. $ will be implied if not specified.
TextyTmpl("You can use {globalVariable} names!")TextyUpper$(S$) & TextyLower$(S$) - Convert a string to lower or uppercase. Copied from DEFY .