'''ctcl''' is basically a tclkitsh or tclsh replacement for Windows. It is a console application with [twapi] and [sqlite] bound in. The biggest difference though from tclsh or tclkitsh is in its accepting scripts from the command line using standard Tcl syntax. Example are below: Without any arguments, ctcl behaves like tclsh. If the first argument is a script file, ctcl behaves like tclsh. Otherwise, ctcl treats the entire line as a Tcl script. No magic, but very convenient under Windows. Examples follow. ====== R:\>ctcl + 1 2 3 6 ====== (tcl::mathop are autoimported) ====== R:\>ctcl toclip [read stdin] This text will go into clipboard ^Z ====== Copies what you type to the clipboard. <>Windows