vote up 15 vote down star
3

I've been forced to code in Tcl a number of times, and just can't wrap my head around this language.

It's not just that it is syntactically different than c-like languages: Lisp is different but genius, prolog is different with a valid cause. Tcl is different because it was a bad idea taken to its fullest possible extension.

"Lets make a language where the operator is on the left, just like a shell. When that runs out of gas we'll extend it a hair by letting you have sub-commands in square brackets. And when people notice that it is odd that there are no binary operators we'll extended it by nailing a different language onto it." (The expr syntax is not tcl, it is c-like.)

Yet it survives, especially in the embedded space. Perhaps because it has a small footprint. But there must be a dozen languages with a small footprint that are easier to code in. Is there some magic goodness I have just missed?

Here is a small Tcl example to refresh you on Tcl. Notice for instance the need for a $ before a variable when reading from it but not writing to it. How did every single other language manage to work that out without needing a hint from the programmer!? Recall that it would be a syntax error to omit the space between the while and the { because the parser itself is written in four lines of Tcl and can't deal with crazy stuff like that. Notice that an idea as simple as p-- takes a whole 8 tokens.

proc power {base p} {
    set result 1
    while {$p > 0} {
        set result [expr $result * $base]
        set p [expr $p - 1]
    }
    return $result
}
flag
1  
The things you complain about are very similar to cmd.exe and the UNIX shells: set x=0%x% rem cmd.exe export x=$(expr $x + 1) and these are also used quite a bit. – paxdiablo Sep 19 '08 at 4:50
2  
Ah, yes. Why won't bash die...? – Thomas Sep 19 '08 at 5:03
4  
I don't think anyone would deny that bash has a terrible syntax, but it's also pretty clear why people still use it. The same doesn't appear to be true for Tcl. :-) – Cody Hatch Sep 19 '08 at 5:08
1  
instead of: set p [expr $p - 1] do: incr $p -1 – x0n Dec 25 '08 at 0:54
1  
Expect was my reason for using TCL. I'd have been perfectly happy with it, too, except that they made the comments first-class language items. Which seems like a great idea until you want to comment out one line of an array. Then it seems like a 'what were you guys smoking' kind of idea. Expect rocks though, and it's only mostly as good in Perl as it is in TCL. – Michael Kohne May 27 at 22:29
show 2 more comments

20 Answers

vote up 36 vote down check

Tcl gets a lot of hate, and yes, it's a little different than what most people are used to nowadays. If you never really liked shell-script (or make, for that matter), you'll probably dislike Tcl; however this is a very subjective thing - some people love it. Much of the hate comes from misunderstanding the syntax - simple yes, but subtle. Many people just have a mismatch with the way they like to think, though I'll freely that admit it has its ugliness.

But if you're operating in a situation where shell-script is nearly appropriate, but just a little too clumsy for the task at hand, Tcl can be a very handy middle ground; after all, that's what it was designed for. Heck, some of its features are still lacking in many mainstream languages (easy async I/O springs to mind, as well commands like "after" and "vwait").

To address the question at hand though, Tcl would seem to survive because:

  1. It's available just about everywhere, and it's been around long enough to have many of the kinks worked out.
  2. It has excellent documentation
  3. It has a large collection of software implemented using it; and who really wants to spend the money to change if it works well enough?
  4. It has a niche, and fits it well
  5. Tk - hard to beat for a quick and easy cross-platform GUI; I mean, most "modern" scripting languages support Tk out of the box, which means that there will be a Tcl interpreter floating around. Tcl/Tk was a lovely alternative to C/Motif at the time, and Tk is still surprisingly usable, especially with the recent updates for 8.5

However, it isn't trendy, and is widely vilified, so its looking more and more likely that it will gradually fade away as a language and live on mainly through legacy applications and Tk bindings.

link|flag
Good point about Tk. – Cody Hatch Sep 19 '08 at 6:23
1  
Tk was indeed the go-to scripting gui for some time, although I would argue that PyGtk has replaced it in that capacity over the past few years. – Adam Lassek Sep 19 '08 at 17:01
ALassek: I'll grant you Gtk and its bindings to various languages is a possible replacement, esp. in modern environments. However, it's still a little lacking on the cross-platform front, e.g. Mac OS X. And it needs man pages :) – wrt Sep 19 '08 at 18:54
vote up 0 vote down

I use TCL extensively. I am a systems engineer, not a software engineer. As far as I am concerned if it can't be done in WatFive FORTRAN or TCL, it isn't worth doing, i.e. MS Word.

link|flag
vote up 2 vote down

I'd also recommend reading Ousterhout’s 1998 paper on scripting as compared to systems programming:

http://home.pacbell.net/ouster/scripting.html

(Sorry, I’m not allowed to post hyperlinks yet)

I agree with other answers likening Tcl to shell script language (done right) and Lisp. In Lisp, everything is a list; in Tcl, everything is a string, and data and code are miscible in the same sorts of ways. Treating everything as commands (as opposed to, say, methods or functions) is surprisingly elegant, and seems to work very well in general. Tcl has strong string-handling, exceptions, and is readily extensible. It is genuinely high-level and portable. You can write programs in a functional style if you wish. The time command is extremely handy for profiling and optimizing. The syntactic weirdnesses of the language make sense when you understand the underlying philosophies of the language (I certainly misunderstood it first time round). And Tk is indeed excellent for GUI development: being able to script a GUI prototype interactively is liberating.

link|flag
vote up 1 vote down

It's not just that it is syntactically different than c-like languages: Lisp is different but genius, prolog is different with a valid cause. Tcl is different because it was a bad idea taken to its fullest possible extension.

Think of it as "Lisp with no data types". It kind of makes sense then, in a funny sort of way.

"Lets make a language where the operator is on the left, just like a shell. When that runs out of gas we'll extend it a hair by letting you have sub-commands in square brackets. And

Square brackets simply mean to evaluate it. In Lisp, () means eval, '() means quote; in Tcl, [] means eval, {} means quote. It's not that bad.

when people notice that it is odd that there are no binary operators we'll extended it by nailing a different language onto it." (The expr syntax is not tcl, it is c-like.)

It's also one of the things I think Tcl got really right. Algol-like arithmetic is one of the biggest complaints about Lisp, even though you rarely need it. Tcl has both the consistency of Lisp, plus a function that gives you Algol-style arithmetic when you do need it.

Yet it survives, especially in the embedded space. Perhaps because it has a small footprint. But there must be a dozen languages with a small footprint that are easier to code in. Is there some magic goodness I have just missed?

There's nothing magic, but then, there's nothing magic about any language. If they're useful, they survive.

Here is a small Tcl example to refresh you on Tcl. Notice for instance the need for a $ before a variable when reading from it but not writing to it. How did every single other language manage to work that out without needing a hint from the programmer!?

All homoiconic languages tend to have issues with quoting, because you need to be able to refer to "the name X" and "the value of the variable X" separately. In Lisp your line might be (set 'result 1), for example (at least before SETQ was invented). Take away homoiconicity, and some things get easier, but some things (like macros, or a way of simulating them) get much, much harder.

If you can come up with a way to do everything elegantly, I'm sure the Python people would love to hear about it. :-) But Lispers have been struggling with this for decades, to the point where Steele and Gabriel said (in 1992) "Perhaps this process should be regarded as a rite of passage for Lisp hackers". Nobody has yet found a way to make a programming language that does everything perfectly.

Notice that an idea as simple as p-- takes a whole 8 tokens.

"incr p -1", though it's common enough many people write their own "decr" to do this.

link|flag
vote up 2 vote down

tcl is pretty amazing, it's a real sleeper. In other words, your first impression is not very good, but as you learn more and more about it you realise what a real gem it is.

For instance my first impression of tcl was that it was rather verbose. I could not have been more mistaken. I'm constantly amazed by the small size of tcl programs that do amazing things.

But aside from that, I have reach for tcl when I need something cross platform. I don't think I've ever had to "port" a tcl program to windows (I develop on linux), it just worked. I'm talking about graphical TK based applications, not just trivial scripts.

link|flag
vote up 1 vote down

TCL has a bit of a learning curve if you are coming from a C-style language, but it persists due to the power in its simplicity. It is (relatively) easy to script together a test suite using command-line tools (without requiring any modification to the tools), which in the Windows environment can give you a lot more power and flexibility than is available through batch files. I can simply write a script and call DOS/console tools like they were functions in the language. Many TCL implementations also give you the option of using the TCL console, executing instructions as you type them and giving a more powerful alternative to the DOS console.

As to some of the comments on the OP's code, it looks like the code was written as a translation from some other language (or some other language's mindset). You can actually do quite a lot in a few lines of TCL once you understand the language's paradigm.

link|flag
vote up 3 vote down

I use Tcl extensively, and the only thing I don't like is expr. It's already been pointed out by others that you didn't need expr in your code, but I still agree with your main point -- expr's awkward. However, that is absolutely all that I dislike about Tcl. For the rest, it's a great language that I find makes me very productive.

One of the things I like most about Tcl is that it's easy to make domain languages, including new control structures. It also has some great string-handling capabilities that (along with eval) allowed for this HTML parser to be written in 10 lines (created by Stephen Uhler):

############################################
# Turn HTML into TCL commands
#   html    A string containing an html document
#   cmd 	A command to run for each html tag found
#   start   The name of the dummy html start/stop tags

proc HMparse_html {html {cmd HMtest_parse} {start hmstart}} {
regsub -all \{ $html {\&ob;} html
regsub -all \} $html {\&cb;} html
set w " \t\r\n"	;# white space
proc HMcl x {return "\[$x\]"}
set exp <(/?)([HMcl ^$w>]+)[HMcl $w]*([HMcl ^>]*)>
set sub "\}\n$cmd {\\2} {\\1} {\\3} \{"
regsub -all $exp $html $sub html
eval "$cmd {$start} {} {} \{ $html \}"
eval "$cmd {$start} / {} {}"
}

A couple of people have mentioned Tk, and that is an important draw for me, also. One the great things about Tk is that it is so straightforward to create GUIs that it actually gets in the way to use a GUI layout program. Heck, just code it. GUI layout programs are there because you have to say where everything goes. With Tk you just say how things are placed relative to one another, and how they should behave when the window is resized. The geometry manager takes care of the rest.

BTW, to me, the code at the top of this thread looks clumsy. It looks like it was ported directly from another language. For one things, it's begging for recursion -- in any language. It is important to realize that people who code regularly in Tcl (like me) can generate much better code, and really good Tcl coders (better than me) write extremely compact code that does a lot in a very few lines.

link|flag
It's perhaps worth mentioning that the above code was originally written back in 1995. It could be made slightly shorter and more efficient today. – Bryan Oakley Jan 3 '09 at 2:11
+1, not just for dissin' expr but asserting that it's the main oddity in TCL. – outis Oct 22 at 5:44
vote up 1 vote down

TCL won't die because I like it :)

It's been ages since I coded anything in TCL, but the thing I remember was the ease of interpolation/substitution/escaping. Our network engineers built entire language in TCL, essentially reinventing Literate Programming. The driver for network device was also the documentation for it.

And, by the way, a better way to say

set p [expr $p - 1]

is actually

incr p -1

What other gems could you discover?

link|flag
Tcl wont die because Jon Skeet probably likes it. =P – StingyJack Nov 21 '08 at 21:21
vote up 1 vote down

A demonstration of the active community is http://wiki.tcl.tk

Just type in something you want to do with tcl and it -will- find it.

The trouble with tcl (sounds like a star trek episode) is like with any other language: if you use it wrong, it can be a real mess. But with tcl, the mess will just be a bit more. Be kind to it, and you'll hardly see any limits to go your way.

link|flag
vote up 2 vote down

The industry I work in has incorporated Tcl into the command line interface of many applications. It allows our users to have access to a basic set of commands and the ability to write their own procedures which can call any of the commands our application provides.

i was skeptical about it when I first started using it, and my boss still hates it, but I now often find myself using Tcl where I might have used Perl. I recently wrote a huge set of Tcl scripts to checkout, build and run a standard suite of unit and regression tests after every check in. We can pull some of the procs out of this system and use them in our application code when necessary.

link|flag
vote up 1 vote down

Well it sounds probably lame but "Practical Programming in Tcl and Tk" is one of the best books about a programming language. Interfacing Tcl to C is one of the easist of all scripting languages and Tk is the base for every other portable GUI for any other Scripting language. Just have a look at the implementation, it's wonderful piece of well written code and last but not least check OpenACS, which uses AolServer. It's an excellent tool for web development, and with most Scripting languages it shares wonderful features to mangle strings.

Regards Friedrich

link|flag
vote up 2 vote down

Adding more reasons (and seconding reasons already posted):

  1. The language syntax has only 11 rules - brilliantly simple once you know them!
  2. I have never used another GUI toolkit where I could create a UI quicker and with fewer lines of code. pack [button .b -text "hi" -command exit] - elegantly simple to create UIs quickly. I'm sure that same button would have taken me at least 5-10 lines of code in Java, C++, even Perl/Tk.
  3. Cross-platform simplicity. Truly write-once, run anywhere, even with a GUI toolkit. No recompiles, just run it. And with Tclkit/Starkit, writing a simple tool you can deploy nearly anywhere gets even simpler.
link|flag
vote up 7 vote down

I think your trouble is thinking of Tcl in terms of other C-like languages, and at first glance you might be tempted to associate it as one. Tcl actually shares more with Lisp and Shell syntax. Not that Tcl is free of warts, but general less than or on par with other languages.

I'll point you to this article for some enlightening points: http://antirez.com/articoli/tclmisunderstood.html

In short, Tcl is still used heavily for many reasons, including:
1. Simple, concise syntax
2. Tk for easy GUI programming (even nicer widgets with Ttk in 8.5)
3. Event event model (threads if you really need them)
4. Easy socket programming
5. Easy interface to C when needed
6. High quality releases, readable sources (for those who care.)
7. Mutli-pardigm: procedural, object oriented, functional
8. Unicode in the core, not some add-on.

link|flag
vote up 2 vote down

Tcl also provides an excellent platform on which you can build large tools. Its package mechanism works well for incrementally loading functionality through shared libraries, as well as handling dependencies.

Plus, for a different view on why Tcl is good, read: http://www.yosefk.com/blog/i-cant-believe-im-praising-tcl.html - he makes a nice argument for using Tcl's syntax.

link|flag
vote up 2 vote down

The standard libraries that ship with Tcl distributions are extremely helpful for setting up test environments.

For instance, I recently needed a bare-bones SMTP implementation to verify that email was being sent by the system I was developing. Using the Tcl smtp library let me set up a local SMTP server in less than a minute. I've done the same for a quick TFTPD server.

link|flag
vote up 7 vote down

And expect is pretty useful, which also carries Tcl along with it.

link|flag
vote up 4 vote down

So, your example is to compute a factorial, and name your function "power"? Interesting. As for decrementing, "incr p -1" is perhaps better here, if the number of "tokens" is a concern.

As for why Tcl won't die - it just works. I use Tcl pretty extensively, and it is a very consistent language. 12 syntax rules is all you have to learn, and a relatively small number of built-in commands. It is very natural to prototype in Tcl, and move parts to C as needed. As noted in other comments, Tk is a very nice and flexible toolkit, and at the time it was in widespread use, it was perhaps the best multi-platform GUI toolkit, so there is a lot of support for it.

There are a lot of options for interfacing with existing code. For example, you can use SWIG to generate Tcl bindings for an extension, you can use critcl to compile C code (usually dynamically generated) within your script and then call it, you can use ddl, ffidl or others to call non-tcl aware library functions without any binding code. With TclBlend and Jacl you can call java code, or embed a scripting language in Java code. Twapi lets you call the Windows API functions.

It is easy to embed as a scripting language in a C program. It is easy to strip it down and add functions to create a domain specific language to drive external libraries. It is easy to use sdx or starkit or freewrap to generate a single binary executable, with all package extensions included with your application scripts in a virtual file system. Under Linux now, there are a lot of FUSE extensions that allow all kinds of cool file system extensions without having to get into kernel hacking.

Not that other dynamic language don't have many or all of these, but Tcl has been around for quite a while, is quite stable, works, and has a very helpful user community. There just isn't a reason for it die.

link|flag
The function does not compute factorial, it does compute power. See my point exactly! Tcl is so odd it is hard to even tell what the heck a two line function does! tcl>power 10 2 ==> 100; tcl>power 2 4 ==> 16 – Jeff Sep 19 '08 at 15:29
The function computes ("base" to the power of "p"), not factorial. If you use Tcl "pretty extensively" and still can't tell... I guess it proves some point. ;-) – ShreevatsaR Jan 3 '09 at 0:02
To be fair, it's bad Tcl... it's possible to write bad code in any language. – RHSeeger Oct 19 at 0:16
vote up 4 vote down

Tcl is easy to learn, and Tk is even easier, compared to other GUI languages. I learnt Tcl before Perl, and I liked it. Code in Tcl is more readable than Perl, however their purpose are similar. Tk has a great role in not letting Tcl lost in the shadows.

link|flag
6  
Yes, but being more readable than Perl is kind of like winning the Special Olympics. :P – Adam Lassek Sep 19 '08 at 17:04
vote up 1 vote down

The machine understands it fine. Why does it have to die?

If you're the maintainer, remmeber that for the implementer at the time, it is the most useful/well known thing. If there are no maintainers for the tool you're using it may be best for you to rewrite it in something you and your peeps know better. Remember that for every technology that you hate, someone else knows it and finds it useful.

link|flag
I'm still looking to find that person. Maybe someone will post and show us that they do really like the Tcl way... – Jeff Sep 19 '08 at 15:53
You can stop searching. I much prefer the way Tcl works over languages like Perl, Python and Ruby (though Ruby is starting to grow on me a little). – Bryan Oakley Apr 14 at 15:56
I feel exactly the same way as Bryan. I love the way Tcl works. Its pure simplicity/elegence once you learn it, and the types of things you can do with it are far beyond what you can do in the vast majority of languages. You need to get to the point of Lisp (and real macros) before you can replicate the things you can do in Tcl. – RHSeeger May 29 at 14:01
vote up 1 vote down

It's a good question, and I'm really not sure. I've had to program in it a few times, and I just don't understand the advantage. Every time I look at a block of Tcl code that does anything significant I get a strong feeling that I must have missed something.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.