in reply to Re^7: Memory leak!
in thread Memory leak!
Not to interrupt our regularly scheduled disharmonious bisecting of the rabbit, but perhaps while(1) gets optimized to while():
% perl -MO=Deparse -e"while() { print }" while (1) { print $_; } -e syntax OK % diff <(perl -MO=Concise -e'while($x){print}') \ <(perl -MO=Concise -e'for(;$x;){print}') %
Carry on. (Like I could stop either of you.)
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Memory leak! (yawn)
by ikegami (Patriarch) on Dec 13, 2011 at 06:42 UTC |