in reply to Re^2: Getting for() to accept a tied array in one statement
in thread Getting for() to accept a tied array in one statement
assuming that for and while are the perl built-ins, and that you're not using source filtering or keyword plugins etc.for (foo(list)) { ... } while (foo(list)) { .... } while (<foo(list)>) { .... }
Dave.
|
|---|