Help for this page

Select Code to Download


  1. or download this
    sub frobnicate {
        $_[0] =~ s/foo/bar/g;
        return;
    }
    
  2. or download this
    sub frobnicate {
        my ($ref) = @_;
        $$ref =~ s/foo/bar/g;
        return;
    }