Hello,

No one at all thinks:
function foo($x, $y) use $a, $b, $c {
}

Looks awkward and a little out of place when compared to:

vs

function foo($x, $y) {
    lexical $a, $b, $c;
}

Although the fact we have to import variables from the parent scope kinda
stinks and is not typical in closer implementations, we should at least
import into the scope in a way consistent with how we do it already with
GLOBAL right? Just seems a lot cleaner IMO.

-Chris

Reply via email to