Help for this page

Select Code to Download


  1. or download this
    foreach $line (readline FNAME){
        @data = split /\t/, $line;
    ...
        $id_veritasHash{$count} = \@data;
        $count ++;
    }
    
  2. or download this
        while ( ($key, @value) = each %id_veritasHash){
            foreach $temp (@value){
                print "$key, $temp\n";
            }
        }
    
  3. or download this
    13, ARRAY(0x121654)
    7, ARRAY(0x121654)
    5, ARRAY(0x121654)