The OPEN command in Tcl

1

What is the open command in Tcl used for?

I'm developing on Linux.

    
asked by JeanPierem 27.05.2017 в 01:57
source

1 answer

-1

TCL "Tool Command Language" or "command tool language"

It is a script language created by John Ousterhout

It is mainly used for the rapid development of prototypes, "script" applications, graphical interfaces and tests. The combination of Tcl with Tk (from English Tool Kit) is known as Tcl / Tk, and is used for the creation of graphical interfaces.

It was initially thought to join simple programs in C, giving shape to a simple application.

Open Allows you to run a program and communicate with it using standard input / output. The program must be written in such a way that it performs all the data exchange through the standard input and output.

You can find information at:

link

link

    
answered by 27.05.2017 в 02:54