Tcl – Arrays

A array is a systematic arrangement of a group of elements using indices in Tcl arrays. The syntax for the conventional array is shown below. set ArrayName(Index) value An example…

Continue ReadingTcl – Arrays

Tcl – Loops

There may be a situation in Tcl, where you need to execute Loops by block of code several number of times. In general, statements are executed sequentially: The first statement…

Continue ReadingTcl – Loops