- or download this
print scalar(foo), ', ', $_, $/ for foo;
- or download this
Use of uninitialized value in print at cl line 16.
Flintstone,
- or download this
print scalar(foo), ', ', $_, $/ for my @a = foo;
- or download this
Flintstone, Fred
Flintstone, Wilma
Flintstone, Pebbles
- or download this
my @foo = qw /one two three/;
sub foo () : lvalue {@foo}
...
print for foo;
__END__
Use of uninitialized value in print at /tmp/bug line 9