use Math::Matrix; use Math::Roman qw( roman ); use File::Slurp qw( slurp ) ; my $sign = slurp( \*DATA ) ; my $year = roman( 1776 ); my $matrix = Math::Matrix->new( map [map roman($_), split '',$_], $yea +r =~ /(...)(...)(...)/ ); for (@{ $matrix->transpose }) { my $copy = $sign; $copy =~ s/###/sprintf '%3d',$_/e for @$_; print "$copy\n"; } __DATA__ ### / \ / \ / \ ###-------###
  • Comment on Discovering Esoteric Meanings With Perl Part 3 -- The Reverse of the Great Seal of the United States
  • Download Code

Replies are listed 'Best First'.
Re: Discovering Esoteric Meanings With Perl Part 3 -- The Reverse of the Great Seal of the United States
by Anonymous Monk on Jun 18, 2009 at 20:10 UTC