- or download this
Item1 => {
SubItem1 => {
...
},
Item2 => {
...
- or download this
sub hashref_to_treeview {
my $hashref = shift;
my $treeview = shift; # Win32::GUI::Treeview object
...
hashref_to_treeview($$hashref{$node}, $treeview, $new_node);
}
}
- or download this
my $id = 1;
my $data = {};
my $table1_results = $dbh->selectall_arrayref('SELECT field1 FROM tabl
+e1 WHERE id = ?', {Slice => {}}, $id);
...
...
}
}
- or download this
parent child1 child2 child3
-------- -------- -------- --------
value1 value2 value3 value4
value1 value2a value3 (null)
...
- or download this
sub recursion_test {
my $array = shift;
...
}
return [$$array[0], undef];
}