The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011 #!/usr/local/bin/perl -wuse strict;use Tk;use Tk::Xlib;use Tk::X;my $mw = MainWindow->new;$mw->Button(-text => 'Quit', -command => [destroy => $mw])->pack;MainLoop;
#!/usr/local/bin/perl -w
use
strict;
Tk;
Tk::Xlib;
Tk::X;
my
$mw
= MainWindow->new;
->Button(
-text
=>
'Quit'
,
-command
=> [
destroy
])->
pack
;
MainLoop;