Help for this page

Select Code to Download


  1. or download this
    for ( keys %{ $bible{'Genesis'}{'chapter 1'} }) {
        print $_, ": ", @{ $bible{'Genesis'}{'chapter 1'}{$_} }, $/;
    }
    
  2. or download this
    for (sort { $a <=> $b } keys %{ $bible{'Genesis'}{'chapter 1'} }) {
        print $_, ": ", @{ $bible{'Genesis'}{'chapter 1'}{$_} }, $/;
    }