in reply to Re^2: open input files once
in thread open input files once
What is // doing in the above code?
// in this case is the Logical Defined Or (as opposed to the empty regular expression, for example in "$foo =~ //;"). The expression $data{$key}{$file} // 0 is the same as defined($data{$key}{$file}) ? $data{$key}{$file} : 0
|
---|