http://qs321.pair.com?node_id=1197797


in reply to Math::Base - arithmetics with baseX integers (updated)

Here is my favorite example:

use Math::Base; my $one = Math::Base->new( 13, 6 ); my $two = Math::Base->new( 13, 9 ); print "$one times $two equals ", $one*$two, " base 13.\n";