TCL (Tool Command Language) Question:
Download Questions PDF

How to run a package in tcl?

Answer:

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

Download TCL Interview Questions And Answers PDF

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?