Re: tcl command "type"



suchodj@xxxxxxxxxx wrote:
thank you for helping.
my idea was the following : i am coding a little application and
sourcing several files in a sort of main file.  In  order to check if
the files were correctly sourced i thaught of dumping them ???

You can also check whether the source failed or not with catch:

    if {[catch {source myfile.tcl] err]} {
        puts "error sourcing myfile.tcl: \"$err\""
    }
.