Help for this page

Select Code to Download


  1. or download this
      return map $_->{'value'}, @{%$hash}{@_};
                                  ^
    
  2. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
    };
    
    print "$_\n" for xget($hash, qw(foo bar) );
    
  3. 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.
    
  4. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
    };
    
    print "$_\n" for xget($hash, qw(foo bar) );
    
  5. or download this
    $ ./1024343.pl
    FOO
    BAR