Understanding Tcl Polymorphism
- by Xofo
In Tcl a variable and a procs can have the same name ...
for instance I can have
set container(alist) {}
proc container a {puts " do something"}
Um ... what other forms of polymorphism exist in tcl? ... I am looking at some code and I see stuff like this.