TCL (Tool Command Language) Question:
How to run a package in tcl?
Answer:
source <package_name>
(or)
package require <name>
(or)
package require <name>
Previous Question | Next 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? |