in reply to Variable blasphemy
This: @tmpConv[0] should be this: $tmpConv[0]. (If you had use warnings, it would have told you that.)
You use @array to refer to the whole array, and $array[i] to refer to the individual scalars it contains.
Whether that will fix your problem I haven't checked, but its a good start.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Variable blasphemy
by SixTheCat (Novice) on Jul 24, 2015 at 15:08 UTC | |
|
Re^2: Variable blasphemy
by SixTheCat (Novice) on Jul 24, 2015 at 15:12 UTC | |
by poj (Abbot) on Jul 24, 2015 at 15:38 UTC | |
by SixTheCat (Novice) on Jul 24, 2015 at 15:51 UTC | |
by GotToBTru (Prior) on Jul 24, 2015 at 16:36 UTC | |
by SixTheCat (Novice) on Jul 24, 2015 at 15:49 UTC | |
by Monk::Thomas (Friar) on Jul 24, 2015 at 15:55 UTC |