Help for this page

Select Code to Download


  1. or download this
    package Tree;
    
    ...
       my $parent_node = ...;
       $parent_node->add(new Node($item));
    }
    
  2. or download this
    package Tree;
    
    ...
       shift(@_);
       return Node->new(@_);
    }