1 2 3 4 5 6 7 8 9
#! /usr/bin/env raku my %result = $*ARGFILES.comb.Bag; for %result.keys.sort -> $key { say "$key: %result{$key}"; }