Help for this page

Select Code to Download


  1. or download this
    sub f { $_[0] =~ s/a/b/g }
    my $text = 'foo bar'
    f $text
    
  2. or download this
    sub f { 
       my $ref = shift;
    ...
    }
    my $text = 'foo bar'
    f \$text