Perl started out fast - TCL started out slow. Perl used syntax that, although it would drive some people crazy, followed a linguistic curve that Larry Wall claimed was healthy. The English language is crazy, and yet, it has become standard world wide as well. Designed, regular languages like Esperanto have not received much support either. Perl is designed to be practical. TCL was designed to be minimalistic. Perl uses common idioms for UNIX programmers. // for regular expressions, $VAR for variables, Many of the statement are familiar for C programmers. ++ for increment (compare against 'incr abc' for TCL). $a=5 for assignment, compare against 'set abc 5' in TCL. TCL tries to have a reduced syntax, where 'everything is a string' which requires wierdness for people. For example, newline is end-of-line, so { must be positioned correctly. Code is a string, so in some cases you need to escape code, otherwise not. Perl has object oriented support built-in. It's ugly, but it works. TCL has a questionable '[incr tcl]' package. Perl has a wealth of modules on CPAN to do almost anything you need to. TCL has the beginning of one (not as rich), but comes built-in with things like event loops, and graphicals (Tk). I could go on and on - but I won't, because this is the PostgreSQL mailing list. People either get Perl, or TCL, or they don't. More people 'get' Perl, because it was marketted better, it's syntax is deceivingly comparable to other well known languages, and for the longest time, it was much faster than TCL to write (especially when using regular expressions) and faster to run. Did TCL get treated unfairly as a result? It's a language. Who cares! :-) Cheers, mark -- mark@xxxxxxxxx / markm@xxxxxx / markm@xxxxxxxxxx __________________________ . . _ ._ . . .__ . . ._. .__ . . . .__ | Neighbourhood Coder |\/| |_| |_| |/ |_ |\/| | |_ | |/ |_ | | | | | | \ | \ |__ . | | .|. |__ |__ | \ |__ | Ottawa, Ontario, Canada One ring to rule them all, one ring to find them, one ring to bring them all and in the darkness bind them... http://mark.mielke.cc/