in reply to Re: here is a script to log what you do during the day...
in thread here is a script to log what you do during the day...
Why use map in void context and create a list that you are not going to use?
No list is built in void context anymore.
The only thing that got created and not used is the SVs created by post-increment. $x++ automatically gets converted to ++$x in void context, so your for rewrite doesn't suffer from this whereas the original did.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: here is a script to log what you do during the day...
by jwkrahn (Abbot) on Feb 07, 2011 at 22:34 UTC | |
by ikegami (Patriarch) on Feb 07, 2011 at 23:10 UTC |