in reply to Re: Array of Hashesin thread Array of Hashes
Why print sprintf ... instead of printf ...?
Hi Grandfather, because I would use
say() [download]
And because usually I am doing
$log->debug(sprintf 'format', @values) [download]
$msg = sprintf 'format', @values; $DEBUG && say $msg && $log->debug($msg); [download]
Basically, I've never used printf alone in the last 20 years, because it does not meet my needs.