Help for this page

Select Code to Download


  1. or download this
    [
     []              ,
     [ [] ]          ,
     [ [] , [ [] ] ]
    ]
    
  2. or download this
    sub ordinal {
        my @list = defined($_[0]) ? @{ $_[1] } : ();
    ...
    
        return ordinal( $_[0] - 1 , [ @list , \@list ] );
    }