Help for this page

Select Code to Download


  1. or download this
            while (<FILE>) {
            $file_data=<FILE>;
            }
    
  2. or download this
    while( $file_data = <FILE> ) { }
    
  3. or download this
    my ( $file_data ) = <FILE>;