Help for this page

Select Code to Download


  1. or download this
    our %ESCAPES = (
       n => "\n",
    ...
          last;
       }
    }
    
  2. or download this
    our %ESCAPES = (
       n => "\n",
    ...
    
       return $interpolated;
    }
    
  3. or download this
    our %ESCAPES = (
       n => "\n",
    ...
    );
    my $need_to_interpolate = 'smell my $string\n';
    print interpolate($need_to_interpolate, \%symtab);