AdminFeb 14, 20241 min readWhile loop for TCLRated 0 out of 5 stars.No ratings yetUntil i becomes 11 the loop continue to puts $iset i 1while {$i < 11} { puts "i = $i" incr i}Outputi = 1i = 2i = 3i = 4i = 5i = 6i = 7i = 8i = 9i = 10
Until i becomes 11 the loop continue to puts $iset i 1while {$i < 11} { puts "i = $i" incr i}Outputi = 1i = 2i = 3i = 4i = 5i = 6i = 7i = 8i = 9i = 10
Reading a csv file by using tcl Reading a csv file procedure is similar to the other programming languages. # Open the CSV file in read mode set filePath...
コメント