in reply to Unknown problem, throws "Useless use of privt var in void contxt"
I'd take a look at the line
if ($month => 10) {which actually boils down to
if ("$month", 10) {since "=>" is the "fat comma" operator, used in defining hashes, whose only distinction from the comma operator is that it ensures its left-hand argument is a string.
I think you meant to say
if ($month >= 10) {instead. Not sure why the error appears so far down, but there you are.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unknown problem, throws "Useless use of privt var in void contxt"
by halley (Prior) on Jan 22, 2008 at 14:13 UTC |