- or download this
#!/usr/bin/perl
use Tk;
...
});
MainLoop;
- or download this
#!/usr/bin/perl -w
use strict;
...
$mw->Label(-image => $image)->pack(-expand => 1, -fill => 'both');
$mw->Button(-text => 'Quit', -command => [destroy => $mw])->pack;
MainLoop;
- or download this
#!/usr/bin/perl -w
use strict;
...
$mw->Label(-image => $image)->pack(-expand => 1, -fill => 'both');
$mw->Button(-text => 'Quit', -command => [destroy => $mw])->pack;
MainLoop;
- or download this
#!/usr/bin/perl
use Tk;
...