RosettaCodeData/Task/String-concatenation/Tcl/string-concatenation-2.tcl

5 lines
119 B
Tcl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
set s "Hello "
set t "World"
set u "!"
puts $s$t$u ;# There is nothing special here about using puts; just an example