Search Results

4
votes

Why won’t Tcl die?

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. A …
2
votes

Does TCL have some concept of function pointers?

A slightly expanded example of what was listed above that might illustrate the Strategy Pattern more clearly: proc PrintToPDF {document} { <snip logic> } proc PrintToScreen { …
1
vote

LDAP Authentication using CGI+TCL

Here is an example that will connect to an ldap server and retrieve all of the info ldap has about an email address: package require ldap set sEmailAddress "user@example.com" set h …
3
votes

TCL: Recursively search subdirectories to source all .tcl files

Perhaps a little more platform independent and using builtins commands instead of piping to a process: foreach script [glob [file join $basepath folderA *.tcl]] { source $script } …
1
vote

How to set default values for Tcl variables?

Alternatively you can use something like the cmdline package from tcllib. This allows you to set up defaults for binary flags and name/value arguments, and give them descriptions so that a formatt …
1
vote

In TCL, How do I make a variable use the value of another variable

If you must have the list defined as you have it, you can also use the subst command, which will perform the substitution that the curly braces are preventing: subst $confCmds …
1
vote

How to concisely concatenate strings in Tcl?

If you are doing this many times, in a loop, or separated by some intermediate code, you might also consider: set result "" append result [myFoo $arg] append result [myBar $arg] app …