in reply to Re^2: Floating point number counting script stuck in a loop
in thread Floating point number counting script stuck in a loop
Technically, you've initialised a variable, not declared it. Doing both at the same time:my $count;
Update: This link may prove helpful.my $count = 0.0;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Floating point number counting script stuck in a loop
by Vonunov (Novice) on Oct 25, 2007 at 08:09 UTC |