The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
# 43SBKZC - fact created by Pip Stuart <Pip@CPAN.Org> to calculate factorials iteratively as part of the Math::BaseConvert package
use strict; use warnings; use Math::BaseConvert qw(fact); print fact(shift) || die "USAGE: `fact <NumToComputeFactorialOf>`\n";