#174 Run all tcl scripts in the given folder

set dir "D:/projects/tcl/test174/tcl_files"
foreach script [glob -nocomplain -dir $dir *.tcl] {
  source $script
}