in reply to Can you explain this error please?
To isolate where the problem is occurring, try adding a block with the no warnings pragma:
use warnings; use strict; my $a = 5; { no warnings; # remove to see what happens print $a + $b; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can you explain this error please?
by kennethk (Abbot) on Mar 01, 2016 at 20:28 UTC |