TCL (Tool Command Language) Question:

How to run a package in tcl?

Answer:

source <package_name>
(or)
package require <name>

Read All 11 TCL Questions
Previous QuestionNext Question
how to increment eacl element in a list?
eg: incrlist {1 2 3}
=>2 3 4
How increment a character? For example, I give a and I should get b?