New feature in #Tcl9 – part 37:

expr – supports comments inside expressions

Now this is really handy! Use this do properly document your overly long expressions easily:

expr {
# compute the sum of everything:
$myNumber + acos(-1) # acos(-1) = PI !
+ 34/double($myNumber) # the 34 is my invention ...
}

Note, that this is not a comment within double quotes or braces ...

Thanks to Donal Fellows for thus hint:

He mentioned that this also applies to [if] and [while] as these internally use [expr] of course!

So, you can now do this!!

if {1 > 2 # will that ever happen?} {puts no} else {puts yes}

Wow!