in reply to Re: what is @$varname in perl
in thread what is @$varname in perl
@$row is a short way of saying:
Regards,my @arr = split(/,/, $line ); my $row = \@arr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: what is @$varname in perl
by 2teez (Vicar) on Jul 03, 2014 at 10:21 UTC |