Multiway Tree in Pure Perl
Insert keys into a multiway tree
``` local $keysPerNode = 15;
my $t = new;
$t = insert($t, $, 2*$) for 1..256;
is_deeply $t->printKeys, <
For documentation see: CPAN
``` local $keysPerNode = 15;
my $t = new;
$t = insert($t, $, 2*$) for 1..256;
is_deeply $t->printKeys, <
For documentation see: CPAN