====== Getting started with Tcl: example 3 ======
This page is part of the Airplug documentation related to Tcl/Tk.\\
[[en:doc:pub:tcltk:start|Back to the Tcl/Tk documentation page]] /
[[en:doc:summary|Back to the Airplug documentation page]]
===== Using substitutions, " vs. { =====
==== Script ====
#!/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}
==== Output ====
Number = 5
String = I love Paris
String = $String
----
This page is part of the Airplug documentation related to Tcl/Tk.\\
[[en:doc:pub:tcltk:start|Back to the Tcl/Tk documentation page]] /
[[en:doc:summary|Back to the Airplug documentation page]]