in reply to Re^3: Subroutine references inside of a hash with arguments.
in thread Subroutine references inside of a hash with arguments.
#!/usr/bin/perl -- my $f = undef; print "$f\n"; use warnings; print "$f\n"; no warnings; print "$f\n"; __END__ Use of uninitialized value in concatenation (.) or string at - line 7.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Subroutine references inside of a hash with arguments.
by Marshall (Canon) on Jul 25, 2009 at 09:28 UTC |