working on a project now named CRPL (pronounced 'carpal'), some shortcuts for TCL (pronounced 'tickle').
Example:
y=lsort $x
rather than
set y [lsort $x]
or
z=(a*b+c*4)
rather than
set z [expr {$a*$b+$c*4}]
It uses the unknown command catcher to handle the new syntax. I am using this extensively in other projects.
