Wish: Difference between revisions

From Rosetta Code
Content added Content deleted
(add more info)
(better language/xrefs)
Line 1: Line 1:
{{stub}}{{implementation|Tcl}}'''wish''' is an interface for the [[Tcl]] programming language interpreter. Wish loads the [[Tk]] library by default; it is virtually identical to [[tclsh]] after the execution of the command:
{{stub}}{{implementation|Tcl}}'''wish''' is an interface for the [[Tcl]] programming language interpreter that provides graphical user interface support that can be scripted with [[libtcl]]. Wish loads the [[Tk]] library by default; it is virtually identical to [[tclsh]] after the execution of the command:
<lang tcl>package require Tk</lang>
<lang tcl>package require Tk</lang>
The minor differences have to do with how the program interacts with the user, especially on [[Windows]].
The minor differences have to do with how the program interacts with the user, especially on [[Windows]].

Revision as of 17:42, 24 May 2009

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
Wish is an implementation of Tcl. Other implementations of Tcl.

wish is an interface for the Tcl programming language interpreter that provides graphical user interface support that can be scripted with libtcl. Wish loads the Tk library by default; it is virtually identical to tclsh after the execution of the command:

<lang tcl>package require Tk</lang> The minor differences have to do with how the program interacts with the user, especially on Windows.