Help for this page

Select Code to Download


  1. or download this
    my $x = f();
    my $y = $x;
    
  2. or download this
    my $y = my $x = f();
    
  3. or download this
    my $copy = $str;
    $copy =~ s/\\/\\\\/g;
    
  4. or download this
    ( my $copy = $str ) =~ s/\\/\\\\/g;