5 lines
119 B
Tcl
5 lines
119 B
Tcl
|
|
set s "Hello "
|
||
|
|
set t "World"
|
||
|
|
set u "!"
|
||
|
|
puts $s$t$u ;# There is nothing special here about using puts; just an example
|