Help for this page

Select Code to Download


  1. or download this
    open FILE, $myfile
    while(<FILE>) {
    ...
            last;
        }
    }
    
  2. or download this
    open FILE, "<:utf8", $myfile
    while(<FILE>) {
    ...
            last;
        }
    }