Help for this page

Select Code to Download


  1. or download this
    while (<DIC>) {
        my ( $key, $tgt ) = split(/\t/, $_);
        push @{ $dictionary{$key} }, $tgt;
    
    }
    
  2. or download this
    while (<DIC>) {
        my ( $key, $tgt ) = split(/\t/, $_);
        $dictionary{$key} = $tgt;
    
    }