Earlier quoted context omitted.
I suspect that for something non-trivial, it will depend on what you are doing. TCL is slow at most things, has fast string manipulation and very fast regular expressions. TCL also makes it easy to write some C to do your heavy lifting, which could be very fast indeed. On the other hand it lacks libraries for async database access etc. It was not meant to be more than a limited test of the TCL event loop and my code.
Node's regular expression engine will run circles around almost every other language implementation out there.[0] This is thanks to Google's work on V8.[1] Regexes are, maybe surprisingly, one of the few things that Node is good at. [0] http://benchmarksgame.alioth.debian.org/u32/performance.php?... [1] http://blog.chromium.org/2009/02/irregexp-google-chromes-new...
On the other hand, I think the point that real world performance will depend on the task in hand stands.