Help for this page

Select Code to Download


  1. or download this
    sub mksref { my $x = +(@_)[-1]; \$x }
    
  2. or download this
    sub mkcref (@) {
       my @closed = @_;
    ...
    sub mkaref (@) {
       return [@_];
    }
    
  3. or download this
    sub mkhref (%) {
        if ( @_%2 ) {
    ...
            return {@_};
        }
    }
    
  4. or download this
    sub mkhref { {@_} }