ashprog has asked for the wisdom of the Perl Monks concerning the following question:
part of the code where I want to get the print
end of part of codesub upstream my ($i,$j,$k, $up, $in, $dna, $size, $upstream, @temp, @pos,@neg, @genome_data ); . . . . . . @genome_data = @_; for ($i=0; $i<@genome_data; $i++) { $genome_data[$i]{GENOME_SIZE} = $size; }
I want to print $genome_data$i{GENOME_SIZE} for every i ..... How can i do that
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: printing in subroutines
by kcott (Archbishop) on Sep 11, 2013 at 21:29 UTC | |
|
Re: printing in subroutines
by GotToBTru (Prior) on Sep 11, 2013 at 21:29 UTC |