in reply to Re: How to find out if X is an element in an array?
in thread How to find out if X is an element in an array?
I guess from the efficiency point of view that it would use less memory if you either use the same file handle or undef them after you close the file. Is that true?open(FILE1, "<$file1") || die "Can't open $file1\n"; open(FILE2, "<$file2") || die "Can't open $file1\n"; open(EMFILE, "<$file3") || die "Can't open $file1\n";
|
---|