RosettaCodeData/Task/Comments/Tcl/comments-2.tcl

5 lines
115 B
Tcl

set aList {foo}
lappend aList # bar
puts $aList ;# ==> prints "foo # bar"
puts [llength $aList] ;# ==> 3