Forum OpenACS Q&A: Re: Problem wiht tcl`s control structure

Collapse
Posted by Emmanuelle Raffenne on
Irma,

You need to put the opening brace of the command on the same line:

for {set i 0} {$i < $sug} {incr i} {
puts "predef $predef"
}

Collapse
Posted by Irma Gamez on
It works!
Really tricky. Thank you very much.