Help for this page

Select Code to Download


  1. or download this
    { local $/;
    next_loop:
    ...
        goto next_loop;
      }
    }
    
  2. or download this
    sub next_record() {
      local $/ = "DELIM";
    ...
    {
    ...
    }
    
  3. or download this
    sub next_record() {
      local $/ = "DELIM";
    ...
    {
    ...
    }