in reply to array of array max length?
Hi. It is difficult to tell exactly what your code is, since it isn't in between code tags (<c>insert_code_here</c>) and square brackets are messing things up.
Nevertheless, I noticed what is causing your problem: Your closing parenthesis is after the 10th element, leaving the 11th just hanging out on the end.
An example:
$ perl -e 'printf("%.1f %.2f %.3f %.4f\n", 1, 2, 3), 4;' 1.0 2.00 3.000 0.0000 $ perl -e 'printf("%.1f %.2f %.3f %.4f\n", 1, 2, 3, 4);' 1.0 2.00 3.000 4.0000
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: array of array max length?
by tbone654 (Beadle) on Oct 25, 2012 at 21:08 UTC |