Re: trace(1) bug
- Posted by Andy Drummond <andy at kest?eltele.com> Nov 14, 2007
- 584 views
My personal preference - if worth anything - is that if a variable has been declared when used in a for loop, then that variable is used. Then it is in scope after the loop exits. If no such variable has been declared then it is a local to the loop and out of scope as soon as the loop exits. This seems entirely consistent with the normal practise of variable scoping when functions are defined.... Andy