This page is part of the Airplug documentation related to Tcl/Tk.
Back to the Tcl/Tk documentation page /
Back to the Airplug documentation page
#!/usr/bin/tclsh # substitution set Number 5 set String "I love Paris" # Printing on the standard output. puts stdout "Number = $Number" puts stdout "String = $String" puts stdout {String = $String}
Number = 5 String = I love Paris String = $String
<br/>
This page is part of the Airplug documentation related to Tcl/Tk.
Back to the Tcl/Tk documentation page /
Back to the Airplug documentation page