I have a file named test7.tcl:
namespace eval ::dai {
variable name "ratzip"
variable birthday "1982"
proc hello {} {
variable name
variable birthday
puts "Hello, I am $name birthday is $birthday"
}
}
and I want to source this file into another file, called test8.tcl in this way:
source test7.tcl
::dai::hello
but it gives me error: couldn't read file "test7.tcl": no such file or directory
but the two files are under the same folder, what happened?
tclsh test8.tclorsource test8.tcl. Instead, you're in a different directory so the filename isn't what you expect. Diagnose withfile normalize test7.tclto see if the full filename is what you expect. – Donal Fellows Jun 28 '11 at 15:13