Help for this page

Select Code to Download


  1. or download this
    sub recurse {
        my ($depth) = @_;
        print +("   .") x $depth . "current depth:$depth\n" ;
    ...
    }
    
    recurse(-1);
    
  2. or download this
    recurse(0);