Help for this page

Select Code to Download


  1. or download this
    C:\>perl -le "$_ =~ /sub mymy{ }/;"
    Unescaped left brace in regex is deprecated, passed through in regex; 
    +marked by <-- HERE in m/sub mymy{ <-- HERE  }/ at -e line 1.
    C:\>
    
  2. or download this
    C:\>perl -le "$_ =~ /sub mymy\{ }/;"
    
    C:\>