in reply to Code won't proceed after input.
See also Basic debugging checklist
UPDATE:
I would appreciate ALL the help you have.You can use qw to cut down on some typing:
my @AAMatrix = qw( A C D E F G H I K L M N P Q R S T V W Y );
You can use map and Range Operators to cut down on some more typing:
my @AAOcc = map { 0 } 1 .. 20;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Code won't proceed after input.
by Athanasius (Archbishop) on Jan 23, 2013 at 16:06 UTC | |
by AnomalousMonk (Archbishop) on Jan 23, 2013 at 16:09 UTC | |
by space_monk (Chaplain) on Jan 24, 2013 at 11:49 UTC |