top of page
Admin

Creating for loop in tcl

You can create a for loop in TCL like below;

for {set i 0} { $i < 5} {incr i} {
puts “Loop number is : $i”
}

Output:

Loop number is : 1

Loop number is : 1

Loop number is : 1

Loop number is : 1

Loop number is : 1

6 views0 comments

Recent Posts

See All

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...

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page