RosettaCodeData/Task/Comments/Tcl/comments-2.tcl
2023-07-01 13:44:08 -04:00

4 lines
115 B
Tcl

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