Version 7 of The example application

Updated 2003-05-06 21:53:52

The example application for The Tclkit Shell. The purpose of this application is to demonstrate the power of Starkits. Here is one suggestion:

 # - Open an email window addressed to a person in your "address book" -
 # Start script "maila"
 send email %recipient
 # End script "maila"

 # - The address book entry -
 # Start script "janne"
 [email protected]
 www.tcl.tk
 0704-58 392 02
 # End script

This would enable us to launch an email to janne simply by typing "maila janne" in the cmdline window.

Please place your comments below the line!


What does %recipient represent? The first argument to maila? Why not use something more tclish like:

 proc maila {recipient} {
     send email $recipient
 }