Help for this page

Select Code to Download


  1. or download this
    sub recurse {
        my ($ref, $car, @cdr) = @_;
    ...
        $prev_car = $car;
        recurse($ref, @cdr);
    }
    
  2. or download this
    $VAR1 = [
              {
    ...
              }
            ];