Multiple foreach loop variables

This is one of my favorite features. The foreach command supports multiple loop variables and multiple value lists. This means you can assign values to multiple variables during each loop iteration. The values can come from the same list, or from lists that are processed in parallel. This is described on page 75. For example, you can iterate through the contents of an array with:

foreach {name value}[array get arrName] {
    # arrName($name) is $value
}

Get Practical Programming in Tcl & Tk, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.