Help for this page

Select Code to Download


  1. or download this
    use List::Util qw(reduce);
    
    my %c = (1 => { 2 => { 3 => 4 }});
    print reduce { $a->{$b} } \%c, split(/\./, "1.2.3");