enum_from_to

one of the documented procedures in this installation of the ACS
Usage:
enum_from_to   lo   hi
What it does:
generates {lo lo+1 ... hi-1 hi}
Defined in: /web/philip/tcl/ad-functional.tcl

Source code:


    set result {}
    for {set i $lo} {$i<=$hi} {incr i} {
	lappend result $i
    }
    return $result


philg@mit.edu