Until now, the only way to return a value from a Kap function was to have it be returned as the return value from the last expression in a function. Well, there are also exceptions, but those a bit special and should, well, exceptions. But in some cases it's useful to return a value early. Essentially what return is in languages like C, Java, etc. So, I did the obvious and implemented return just like in those languages, except that it's called → to align with APL. This example%20%7B%0A%20%...