Version 3 of routine

Updated 2020-05-29 06:41:33 by pooryorick

A routine is a modular unit of a program. In Tcl, one routine is associated with each command. In order to evaluate a command, Tcl uses the first word of a command to find and execute the associated routine. Many built-in commands are implemented as C functions. In the case of a procedure, the primary function of the routine is to evaluate the body of the procedure.