RosettaCodeData/Task/Hello-world-Graphical/Perl/hello-world-graphical-2.pl
2023-07-01 13:44:08 -04:00

10 lines
150 B
Perl

use strict;
use warnings;
use Tk;
my $main = MainWindow->new;
$main->Button(
-text => 'Goodbye, World',
-command => \&exit,
)->pack;
MainLoop();