Help for this page

Select Code to Download


  1. or download this
    my $raw_graph = [
        'root', undef,
    ...
            "Oops.",
        ],
    ];
    
  2. or download this
    explorenode( $raw_graph, [], 1, 1 );
    
  3. or download this
    sub explorenode {
        my ( $node, $rows, $left, $id ) = @_;
    ...
        $left++;
        push( @$rows, [ $i, $l, $left, $node->[0], $node->[1] ] );
    }
    
  4. or download this
    $VAR1 = [
              3,
    ...
              'root',
              undef
            ];
    
  5. or download this
    $VAR1 = [
              3,
    ...
              'root',
              undef
            ];