vote up 7 vote down star
1

Hi,

One of my modules at university next year is going to involve programming in Tcl tk, I was wondering where to find the best resources and information about the language, so that I am well prepared. I'm currently looking on this site which is pretty helpful, but the book that they recommend is quite old, and I was wondering if someone could recommend any other books to purchase or if the language hasn't changed significantly since the release of the book in 1999?

Also, what projects or examples should I start working on to make me familiar with the language?

Any other information would be extremely helpful and appreciated!

I posted this question because I couldn't find any others similar too it, apologies if I haven't looked hard enough.

Thanks in advance,

flag

8 Answers

vote up 13 vote down check

Some of the books I have in my library that you might find useful are:

  • Tcl and the Tk Toolkit (Ousterhout) - The book on Tcl/Tk, and probably the one you're referring to. It's old and some of the information is a bit out-dated, but it is fantastic (and, I believe, I say that without exaggerating) at showing how to program in Tcl. It was written by the originator of the language.
  • Practical Programming in Tcl and Tk (Welch) - The other book on Tcl/Tk that nearly everyone that programs in it seriously has in their library. Brent did an amazing job on this book.
  • Effective Tcl/Tk Programming: Writing Better Programs with Tcl and Tk (Harrison, McLennon) - Once you get to larger, more complex, programs, this book can be very handy to have read. It goes into organization and the like. This book is likely beyond what you need at the moment, but I mention it because it's a very good read as you get deeper into Tcl.

It's also worth bookmarking the Tcler's Wiki. It can feel a bit unorganized at times, but there's more information there than... well, anywhere. It's an amazing resource.

The ActiveTcl distribution is, indeed the way to go. The folks over at ActiveState are a smart bunch.

link|flag
Thanks a lot for the recommendations, appreciated. – ThePower Jul 16 at 15:12
No problem at all. To this day, every time I program in another language, I'm constantly aware of what Tcl can do (and I expect to be able to do) that the language I'm using can't. I guess it's kind of the way Lispers feel about Lisp... I love Tcl, there's power there that very few (non-Lisp-esque) languages can match. – RHSeeger Jul 16 at 15:54
1  
I second the nod to "Practical Programming in Tcl and Tk". It was one of the first books I bought for my current assignment. – Michael Mathews Jul 25 at 3:08
Thanks for the Tcl love. I used to write lots of scripts in Perl, but our industry has adpoted the Tcl interpreter as a way of providing custom scripting and commands. Now I write most of my utility and config management scripts in Tcl because I'm so comfortable with it. – Michael Mathews Jul 25 at 3:10
1  
I liked "Practical Programming in Tcl and Tk", but I could have used a little more focus on Tcl. – Jason Jackson Jul 25 at 3:19
show 1 more comment
vote up 3 vote down

I also recommend Tcl and the Tk Toolkit. It is great for understanding the core of Tcl, though I can't comment on how useful it is as a reference (I use the online documentation for that). The second edition of Tcl and the Tk Toolkit is currently available as a "Rough Cut" from Safari Books Online (meaning that you can download a draft PDF now and a final PDF when the book is released). They seem to have added a bunch of information about Tk, especially the themed widgets that were introduced in 8.5. They also added some information to the section about Tcl, including dictionaries.

link|flag
vote up 0 vote down

I've also bookmarked www.tcl.tk/doc for a quick reference if I can't quite remember the order of the args or something.

link|flag
vote up 0 vote down

Able to program in Tcl may not land you a job, but it certainly can help you to get the work done fast. I learned Tcl back in 1996 and Tcl is still one of my favorite programming languages in solving most of my daily sys admin work. In most cases, I am able to accomplish the same task when my programming colleagues are still on the drawing board designing the object classes.

link|flag
I like to say "Tcl may not help you get a job, but it will certainly help you do the job" :-) – Bryan Oakley Jul 24 at 13:41
vote up 2 vote down

You can also try TclTutor interactive application where you can not only learn the materail but also try it at once.

link|flag
vote up 0 vote down

There is masses of information on the Tcl Wiki, though it can be hard to find things. A look at the Recent Changes page will show that there's plenty of activity going on.

link|flag
vote up 1 vote down

but the book that they recommend is quite old,

The fact about tcl is, it is quite old, the book by Ousterhout is still the best book on tcl (and IMHO, almost a classic). There was never even a second edition although one is apparently in the making. tcl was a great idea at the time and it doesn't really hurt to learn it, but it hasn't kept up and frankly had a lot of design issues from the start. Don't get me wrong, I was a huge fan of tcl back in the day, but it's not the best thing to be learning now. If you decide to carry-on, pick up a used copy of the original book and use the online resources.

The original purpose of tcl was to be easy and free enough to eliminate the need for the myriad of home-grown command languages that folks were writing to add interactivity to their applications. Later, the Tk toolkit was added and it was the easiest, free way to add a GUI to an application.

Today, there are a lot more options available (for example for GUI's the Qt toolkit is now under the LGPL therefore almost as free at Tk. For adding a command line interface to an existing C / C++ application, the closest modern tool is Lua, but even more powerful languages like ruby and python are not much harder to integrate with C/ C++ applications (especially with tools like boost python and SWIG).

link|flag
1  
Second edition of the Ousterhout book is due in September. – Colin Macleod Jul 16 at 17:01
Frankly, I would say Oursterhout's book is far from the best. It's just way too outdated. It covers the basics fine but the language has changed quite a lot over the years. – Bryan Oakley Jul 24 at 11:30
First, let me say that I am a quiet Tcl/Tk aficionado, so don't take my opinion as unbiased, but I would say that overall Ruby and Python are no more "powerful" than Tcl, just a whole lot more syntactically complicated, which is not a good thing. Granted they do have object orientation, which is much abused and is just now making it into the Tcl core; but they don't have a built in event-loop, which is amazing and a feature of Tcl. – ws Sep 23 at 2:23
vote up 6 vote down

Are you familiar with the Active Tcl distribution? If not, then this is the best place to start looking for resources and documentation.

link|flag
No, I'm not but I'll check it out, I don't have any experience with it so anything to point me in the right direction would be a great help – ThePower Jul 16 at 10:38
+1 If you're working on windows the Activestate distributions are perhaps the best windows-based distros of scripting languages out there. – ConcernedOfTunbridgeWells Jul 16 at 15:08

Your Answer

Get an OpenID
or

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