Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Nov 042010
 

Pass hash as list in Perl

Answer:

To pass a hash as a list in Perl function, use the following way:

use strict;
use warnings;

sub foo {
    my %h = @_;
    print $h{1}; 
}

foo ( 1 => "One", 2 => "Two" );

One will be printed out.

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>