in reply to Re: Complex Data Structure
in thread Complex Data Structure
my ($probeset_id, $origin, $probeseq, $pip, $gc, $affyscore) = split / +\t/;
is a list assignment. A hash slice assignment looks like:
@hash{qw(this that the other)} = qw{some value or another);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Complex Data Structure
by oko1 (Deacon) on Sep 15, 2008 at 16:57 UTC |