Forum Discussion

1 Reply

  • unRuleY_95363's avatar
    unRuleY_95363
    Historic F5 Account
    You pretty much have two choices: 1) comment out the block of code, but do to a Tcl bug, you need to be careful to not leave unbalanced braces as Tcl take a pass at checking the balance of braces without consideration to comments; 2) You can use an if statement to skip code, as in:
    if {0} { ... don't do this stuff ... }