in reply to problems passing variables between subroutines
The (\@$) prototype definition expects an array as its first argument and makes it into a reference (i.e. a scalar). So your
is quite wrong.my (@array_of_lines, $entry_no_new) = @_;
It should be
and next you must dereference the reference:my ($arrayref_of_lines, $entry_no_new) = @_;
my @array_of_lines = @$arrayref_of_lines;
Trust me, you are far better off forgetting all about prototypes and simply use references.
CountZero
A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James
My blog: Imperial Deltronics
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: problems passing variables between subroutine
by Freezer (Sexton) on Sep 05, 2012 at 10:35 UTC | |
by CountZero (Bishop) on Sep 05, 2012 at 13:37 UTC |