Help for this page

Select Code to Download


  1. or download this
    # Set the character which will be used to indicate the end of a line.
    # This defaults to the system's end of line character, but it doesn't
    ...
        last;
      }
    }
    
  2. or download this
    # Set the character which will be used to indicate the end of a line.
    local $/ = "\n";
    ...
        last;
      }
    }