Just what it 'says on the tin', create a list of empty strings.
proc emptyList {n} { for {set i 0} {$i < $n} {incr i} { lappend res {} } return $res}
Post a Comment
No comments:
Post a Comment