Help for this page

Select Code to Download


  1. or download this
    # Make walk() return a list and collect the results:
    sub walk {
    ...
        my @big = walk($r);
        ...
    };
    
  2. or download this
    # Make walk() augment the result list:
    sub walk {
    ...
        my @big = walk($r);
        ...
    };