in reply to Re^2: determine the variable causing the error: Use of uninitialized value
in thread determine the variable causing the error: Use of uninitialized value
EXAMPLE:
OUTPUT:perl -wMstrict -le 'print qq{perl version: $] \n};;; my $x; my %y= (" +h"=>1, "i"=>2); print $x, $y{x}; printf "%s", $x;'
perl version: 5.018002 Use of uninitialized value $x in print at -e line 1. Use of uninitialized value in print at -e line 1. Use of uninitialized value $x in printf at -e line 1. </b>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: determine the variable causing the error: Use of uninitialized value
by LanX (Saint) on Apr 13, 2017 at 19:35 UTC | |
by LanX (Saint) on Apr 15, 2017 at 01:25 UTC | |
by ruqui (Acolyte) on Apr 16, 2017 at 02:37 UTC | |
by LanX (Saint) on Apr 16, 2017 at 11:38 UTC |