does not:
if 0 {
comment
}
still process machine instructions when compiled, whereas:
#~comment
does not?
I think the same could be said in C for:
#if 0
comment
#endif
this being pre-processor commands, and therefore are not compiled into the exe.
Unfortunately I do not know the nuances of the TCL runtime compile so as to know what does wind up in machine instructions.
Thanks for your help.