RosettaCodeData/Task/String-concatenation/Tcl/string-concatenation-1.tcl
2023-07-01 13:44:08 -04:00

4 lines
56 B
Tcl

set s hello
puts "$s there!"
append s " there!"
puts $s