I\'m relatively new in TCL, in TCL prompt, when we invoke a proc with some return value, the proc\'s return value is echoed back by tcl. Is there a way to stop it (without a
You could make an empty procedure in .tclshrc...
proc void {} {}
...and when you don't need a return value, end the line with ;void.
;void