Help for this page

Select Code to Download


  1. or download this
    open (MYFILE, 'mypath');
    while (<MYFILE>){
    #my code here
    }
    
  2. or download this
    #magically turn $myString into a filehandle.
    while (<MYSTRING>){
        #my code here
    }