in reply to Re: Adding a lot of small integers
in thread Adding a lot of small integers

First, I see no reason to avoid strict and warnings. The only overhead it adds is the clearing of the variables in each loop pass.
No, it doesn't. Neither strict nor warnings makes that any variables are cleared. Variables may be cleared if you define them as lexicals inside a loop - but that doesn't change whether you have 'use strict; use warning;' in your program or not.

Replies are listed 'Best First'.
Re^3: Adding a lot of small integers
by ikegami (Patriarch) on Jan 10, 2010 at 08:16 UTC
    I know. Did you read the rest?
      Yes.