Tcl – Lists

  • Post author:
  • Post category:Tcl
  • Post comments:1 Comment

List is one of the basic data-type available in Tcl Lists. This Tcl lists is used for representing an ordered collection of items. It can include different types of items…

Continue ReadingTcl – Lists

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