hi there!
Is it possible to use procs from an other tcl file?
For Example:
file1:
proc blub {blub blubb} { putmsg $chan "blub" }
file2:
proc asd {asd asdd} {
global blub
blub a b
}
or something like this?
I think you got the point.
Thanks for any help!