Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Can someone elaborate on this code, and come up with a better example for us wannabe Tk programmers to learn from. Regardsuse Tk; use Tk::DataTree; $mw = MainWindow->new(-title =>'DataTree'); $dt = $mw->DataTree; $dt->data( { foo => 1, bar => [2, 3] } )->pack; Mainloop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TK::DataTree Examples
by kvale (Monsignor) on Sep 24, 2004 at 22:31 UTC | |
by blackadder (Hermit) on Sep 25, 2004 at 20:24 UTC | |
|
Re: TK::DataTree Examples
by eserte (Deacon) on Sep 27, 2004 at 19:18 UTC |