Help for this page

Select Code to Download


  1. or download this
    *xyz = \&X::YY::ZZ::function;
    
  2. or download this
    my $string = 'Hi          There';
    local *_ = \$string;
    ...
    print $string;
    __OUTPUT__
    Hi There