.ROUTINES.
Example 6.3. .ROUTINES
/* .routines contains one entry with the index (routine name) "TALK" */
.routines~talk~call("echo this text") /* test talk routine */
::routine talk /* floating routine by the name of "TALK" */
use arg text /* retrieve the argument */
say text /* display received argument */