Help for this page

Select Code to Download


  1. or download this
    sub wanted {
        return if /^\./;
        ...
    
  2. or download this
        return if /^\.$/;
    
  3. or download this
        return if $_ eq '.';