Tool Command Language was invented by John Ousterhout as a way to make it easy to write little languages for configuring EDA tools, but it has grown far beyond those humble beginnings to become a general scripting language with built-in asynchronous I/O and Unicode strings while supporting paradigms ...
5
votes
2answers
41 views
Calculating positions along the edges of a rectangle
I had the following three Tcl procedures, which calculate positions along three edges of a rectangle:
...
2
votes
1answer
110 views
Tcl loop idea: for_index_item
I often need to loop through a list of items and need both the index position, and the item itself:
...