Help for this page

Select Code to Download


  1. or download this
    my $ref = {thing => 'value', otherthing => 'other'};
    %alias_to_ref = ;# insert magical code here
    ...
    $alias_to_ref{thing} = 'newvalue';
    
    print $ref->{thing};
    
  2. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
        my $ref = shift;
        return bless($ref, $package);
    }