Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        print $p->{2};
        $p->{2} = 'd';
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        my %h = %{shift()};
        print $h{2};
    }