- or download this
return map $_->{'value'}, @{%$hash}{@_};
^
- or download this
#!/usr/local/bin/perl -w
use strict;
...
};
print "$_\n" for xget($hash, qw(foo bar) );
- or download this
$ ./1024343.pl
Can't use string ("2/8") as a HASH ref while "strict refs" in use at .
+/1024343.pl line 9.
- or download this
#!/usr/local/bin/perl -w
use strict;
...
};
print "$_\n" for xget($hash, qw(foo bar) );
- or download this
$ ./1024343.pl
FOO
BAR