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