Help for this page
# "Official" import mechanism use Interpolation commify => sub { ... $a = 12345.21; $b = 1357.98; print "$a*$b with commas inserted looks like '$commify{$a*$b}'.\n";
# Non-obfuscated form, using tie(): use Interpolation; ... $a = 12345.21; $b = 1357.98; print "$a*$b with commas inserted looks like '$commify{$a*$b}'.\n";