4 lines
98 B
Raku
4 lines
98 B
Raku
|
|
for huffman 'this is an example for huffman encoding'.comb.Bag {
|
||
|
|
say "'{.key}' : {.value}";
|
||
|
|
}
|