Help for this page

Select Code to Download


  1. or download this
    my $names_file = "code.txt";
    
    open(NAMES, $names_file || die "Could not open file!");
    
  2. or download this
    open(NAMES, $names_file) || die "Could not open file!";
    
  3. or download this
    open NAMES, $names_file or die "Could not open file!";