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