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 DeltronicsIn reply to Re: problems passing variables between subroutine
by CountZero
in thread problems passing variables between subroutines
by Freezer
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |