RosettaCodeData/Task/Huffman-coding/Perl-6/huffman-coding-3.pl6

4 lines
98 B
Raku
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
for huffman 'this is an example for huffman encoding'.comb.Bag {
say "'{.key}' : {.value}";
}