How do I rename a Class instproc? For example:
Class T -parameter { {msg "Hello world!"} } T instproc hi {} { puts [my msg] } T instparametercmd msg
T t t hi
t msg "Good Bye!" t rename hi bye t bye
Also, what's the difference between using "instparametercmd" and "parametercmd" in the example above?
Thanks,
Kevin