Help for this page

Select Code to Download


  1. or download this
    sub size_of_an_array {
        return 0 unless @_;
        pop;
        return 1 + &size_of_an_array;
    }