- or download this
use Tk;
my $mw = MainWindow->new(-title=>"hello world");
$mw->Label(-text=>"hello")->pack();
$mw->Button(-text=>"Exit",-command=>sub{exit})->pack();
MainLoop;
- or download this
use Tcl::Tk;
my $int = new Tcl::Tk;
...
$mw->Label( -text => "Hello World!" )->pack();
$mw->Button( -text => "Exit", -command => sub { exit } )->pack();
$int->MainLoop;
- or download this
perl5.18 quit unexpectedly while using the Tk plug-in.