Help for this page

Select Code to Download


  1. or download this
    my %hash = =$fh.map: { .split(/\t/, 2).Pair };
    
  2. or download this
    my %hash = =$fh.map: { my @a = .split(/\t/, 2); @a[0] => @a[1] };
    
  3. or download this
    my %hash = =$fh.map: { given .split(/\t/, 2) { .[0] => .[1] } };