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

5 lines
56 B
Tcl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
set s hello
puts "$s there!"
append s " there!"
puts $s