Hidden Features of TCL/TK - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T06:34:52Z http://stackoverflow.com/feeds/question/1024711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk 9 Hidden Features of TCL/TK joe 2009-06-21T20:43:24Z 2009-08-25T17:34:37Z <p>I've been working with TCL/TK ,recently started to use TCL/TK with my automation applications and I'm hungry for knowledge.</p> <p>To continue with the long line of Hidden Feature questions, I would like to know any hidden or handy features of TCL/TK or any easy method to achieve some big operations</p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1026619#1026619 13 Answer by Colin Macleod for Hidden Features of TCL/TK Colin Macleod 2009-06-22T11:20:36Z 2009-06-22T11:20:36Z <p>When a marketing guy at Sun declared that Tcl was "Enterprise Ready", the developers added the following feature:</p> <pre><code>$ tclsh % clock format [clock seconds] -format %Q Stardate 63473.2 </code></pre> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1027160#1027160 2 Answer by Colin Macleod for Hidden Features of TCL/TK Colin Macleod 2009-06-22T13:17:12Z 2009-06-22T13:17:12Z <p>A handy feature which is not hidden but tends not to be obvious to people coming from other languages is that you can define your own control structures (or even redefine the existing ones if you want to live dangerously). There are examples on the <a href="http://wiki.tcl.tk/685" rel="nofollow">Tcl Wiki</a></p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1027366#1027366 7 Answer by Bryan Oakley for Hidden Features of TCL/TK Bryan Oakley 2009-06-22T13:59:56Z 2009-06-22T13:59:56Z <p>My favorite "hidden or handy feature" is how quoting works in Tcl. I like to use the phrase "<em>quoting is a tool, not a rule</em>". I also like to say "<em>you only need curly braces when you need curly braces</em>"</p> <p>While most languages have rules for which block delimiters must be used for certain things (for example, in C you must use {} to designate a block), Tcl is not so stringent.</p> <p>With Tcl, you can choose whatever quoting characters give you the effect you need. There are certainly best practices, but in the end you get to pick the quoting character that best lets you get the job done.</p> <p>That means, for example, you can define a procedure in many ways, including:</p> <pre><code>proc foo {args} { .... body here .... } proc foo "args" " .... body here .... " proc foo args [some code that returns the body] </code></pre> <p>... and so on. Same goes for conditional statements, loops and everything else. (for the uninitiated, curly braces are roughly equivalent to the shell single quote, double quotes are like the shell double quote, and square brackets are like the shell backtick. ). </p> <p>Now, many people look at that and say WTF? but it really gives a lot of power to the programmer. We often get questions in comp.lang.tcl along the lines of "if I do 'this {and $that}', how do I get $that to be expanded?". The answer follows the old joke "patient: doctor, it hurts when I do this doctor: don't do that". That is, if you don't like the behavior you get with one set of delimiters, choose some other delimiter. Just because an if statement is normally constructed with curly braces doesn't mean it <em>must</em> be constructed with curly braces.</p> <p>That's my favorite "hidden" feature of Tcl. It's not hidden -- it's right on the wonderfully complete yet concise Tcl(n) man page, but the ramifications aren't clear until you fully grok how Tcl works. </p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1028207#1028207 4 Answer by Colin Macleod for Hidden Features of TCL/TK Colin Macleod 2009-06-22T16:33:30Z 2009-06-22T16:33:30Z <p>Another non-obvious feature is that unrecognised commands fall through to a handler called "unknown" which you can redefine. Eg. to have unknown commands treated as expressions to evaluate:</p> <pre><code>$ tclsh % 2+2 invalid command name "2+2" % proc unknown args {uplevel 1 [linsert $args 0 expr]} % 2+2 4 </code></pre> <p>More examples can be found at the wiki page on <a href="http://wiki.tcl.tk/495" rel="nofollow">Radical Language Modification</a></p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1028214#1028214 3 Answer by ConcernedOfTunbridgeWells for Hidden Features of TCL/TK ConcernedOfTunbridgeWells 2009-06-22T16:34:44Z 2009-06-23T12:18:24Z <p>IMHO the greatest hidden feature of Tcl is its <a href="http://wiki.tcl.tk/11541" rel="nofollow">C API.</a> Using this, it's really easy to wrap a core C program or subsystem and write a GUI or other functionality in Tcl. While this feature is not unique to Tcl, Tcl was designed to do this from the ground up and the C API is particularly easy to work with.</p> <p>The second greatest hidden feature is the <a href="http://wiki.tcl.tk/2264" rel="nofollow">packer</a>, the grand-daddy of all geometry managers. With this, a GUI can have sizeable windows with a surprisingly small amount of code. It's important to note that Tcl/Tk had geometry management at least 10 years before .net came out.</p> <p>The third greatest feature of Tcl is the ability to exend the language, either through the C API or with commands defined in Tcl. Not quite LISP macros, but quite flexible nonetheless. <a href="http://expect.nist.gov/" rel="nofollow">Expect</a> is a very good example of an application built around extending the basse Tcl language to make a domain-specific scripting language.</p> <p><strong>EDIT:</strong> well, bugger me, Xt <a href="https://www.s-and-b.ru/syshlp/motif%5Fguide/MotifProgGuide/Managing%5FGeometry.html" rel="nofollow">really did have a geometry manager</a>, although I agree with Nat in that it's somewhat more painful than pack ;-} </p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1028340#1028340 3 Answer by Nat for Hidden Features of TCL/TK Nat 2009-06-22T17:00:45Z 2009-06-22T17:00:45Z <p>Tcl is such a simple, open language there are very few hidden features. It's all exposed for the programmer to extend and adapt.</p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1031517#1031517 4 Answer by Twylite for Hidden Features of TCL/TK Twylite 2009-06-23T09:27:30Z 2009-06-23T09:27:30Z <p>All of Tcl's "keywords" are regular Tcl commands, including control structures like [for], [foreach], [while], etc. This means that you can extend the language by writing new control structures in pure Tcl code. </p> <p>For example, the <a href="http://www.tcl.tk/cgi-bin/tct/tip/329.html" rel="nofollow">try/on/trap</a> structure has been implemented in Tcl 8.6a using only Tcl code. Similarly tcllib contains control::do, a do/while control structure.</p> <p>A lot of this is made possible through the [upvar] and [uplevel] commands, which allow you to access variables or execute code in a different stack frame. </p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1031762#1031762 5 Answer by Twylite for Hidden Features of TCL/TK Twylite 2009-06-23T10:31:22Z 2009-06-23T10:31:22Z <p>Tcl's [trace] command allows you to intercept reads and writes to any variable. This allows you to implement an observer on any variable, and to add automatic range checking of arbitrary complexity to any variable (as if you were accessing the variable via a setter/getter). You could also create auto-incrementing variables using this technique.</p> <pre><code>proc varlimit_re {re var key op} { upvar $var v` if { [regexp -- $re $v] &lt;= 0 } { error "$var out of range" } } trace add variable ::myvar {write} [list varlimit_re {^[A-H]\d{3}-[0-9a-f]+$}]` </code></pre> <p>If you try to set 'myvar' to anything that doesn't match the regular expression, you will get a runtime error.</p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1048912#1048912 1 Answer by xcramps for Hidden Features of TCL/TK xcramps 2009-06-26T12:37:29Z 2009-06-26T12:37:29Z <p>The well documented C API also allowed easy integration in Perl. My experience with Tcl/Tk goes back to 1995, but in 2000 or so, I discovered Perl/Tk and never looked back. </p> <p>And lately, the Tcl and Tkx Perl packages give us modern-looking GUI's. And the two aforementioned modules, while not trivial, involve relatively little code, considering what they allow one to do across language boundaries. And that can be directly attributable to the excellent API (and the power of Perl, obviously).</p> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1196751#1196751 2 Answer by Nir Levy for Hidden Features of TCL/TK Nir Levy 2009-07-28T21:08:58Z 2009-07-28T21:08:58Z <ol> <li><code>[array names]</code> is one of the first questions newbies ask about how to iterate over an array</li> <li>also, the fact that you can <code>foreach {key1 key2} {$list1 $list2} {...}</code> - even if the lists are of different size</li> <li>you should not use comments between switch cases (this is not a cool feature but a problem most developers do not understand</li> <li>the <code>rename</code> command can rename any function/proc</li> </ol> http://stackoverflow.com/questions/1024711/hidden-features-of-tcl-tk/1329764#1329764 1 Answer by Bryan Oakley for Hidden Features of TCL/TK Bryan Oakley 2009-08-25T17:34:37Z 2009-08-25T17:34:37Z <p>I think the <a href="http://tcl.tk/man/tcl8.5/TclCmd/time.htm" rel="nofollow">time</a> command is wonderful. It's not exactly hidden but that doesn't stop people from asking "which function is faster" once in a while in comp.lang.tcl.</p> <p>Anytime you want to know "how long does this take?" or "which method is faster?" you just call it via the "time" command. No creating of objects, no math, no overhead, exceptionally simple. Other languages have a similar feature, though some are a bit less elegant. </p>