http://qs321.pair.com?node_id=748442


in reply to Re: Variable usage
in thread Variable usage

If the OP were to persist in prematurely optimizing, of course, the only thing you could meaningfully optimize this code for would be the number of bytes of code, in which case the naive solution for the critical section would be

$\ = $/; print foreach (@numbers);
Though at that point, we've opened the door into whole new realms of time-wasting. ;-)



If God had meant us to fly, he would *never* have given us the railroads.
    --Michael Flanders

Replies are listed 'Best First'.
Re^3: Variable usage
by ikegami (Patriarch) on Mar 05, 2009 at 07:37 UTC
    $, = $\ = $/; print @numbers;
    Or in 5.10...