Help for this page

Select Code to Download


  1. or download this
    sub foo {
     alias ($_[0] eq 'whatever' ? $_[1] : $_[2]) => my $x;
     ...
    }
    
  2. or download this
    sub foo {
      my ($aref) = @_;
      alias @$aref => my @ary;
      ... do something with @ary
    }