Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
There's an interprocess communication mechanism unique to Tk: the send [1] command. As originally implemented in Tcl/Tk, send transmits commands (which, in Tcl, are simply strings) to another Tcl application running on the same display. The receiving application then executes the commands and replies with the results. Think of it as an eval in the context of the receiver, performed automatically by Tcl/Tk.
[1] Currently, send is not available on Win32 operating systems. This may change in the future.
Perl/Tk provides a send command too, but the default receiver is a simple stub that rejects all incoming send requests. Fortunately, we can override that behavior by writing our own receiver. And we're not constrained to merely evaling the incoming data, but can do whatever we please.