in reply to passing array to a sub
So the problem must be somewhere else - perhaps in what you are doing with the sub, or how you define the variables before passing them. More detail?$s1 = "first scalar"; $s2 = "second scalar"; @a1 = ("first item","second item","third item","fourth item"); &example($s1, $s2, @a1); sub example { $es1 = shift;$es2 = shift;@ea1 = @_; print "S1: $es1\n"; print "S2: $es2\n"; print "ARRAY:\n"; for $i (@ea1) {print "$i ; "} } #prints the following: #S1: first scalar #S2: second scalar #ARRAY: #first item ; second item ; third item ; fourth item ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: passing array to a sub
by pitbull3000 (Beadle) on Aug 25, 2001 at 15:46 UTC |