Given a simple tcl proc like proc foo {a b} {puts \"$a $b\"} What tcl command can I use to print out the procedure foo ... that is I want the text of the proc back ...
Here\'s what I\'d like to achieve: sub first { print \"this is original first\"; } *original_first = \\&first;