RosettaCodeData/Task/Loops-For/Tcl/loops-for-3.tcl
2023-07-01 13:44:08 -04:00

4 lines
133 B
Tcl

set line ""
for { set io [open test.txt r] } { ![eof $io] } { gets $io line } {
if { $line != "" } { ...do something here... }
}