Guest User

Untitled

a guest
May 21st, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. proc iterint {start points} {
  2. # Return a list of increasing integers starting with start with
  3. # length points
  4. set count 0
  5. set intlist [list]
  6. while {$count < $points} {
  7. lappend intlist [expr $start + $count]
  8. incr count
  9. }
  10. return $intlist
  11. }
Add Comment
Please, Sign In to add comment