RosettaCodeData/Task/Hello-world-Graphical/Perl/hello-world-graphical-2.pl

11 lines
150 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
use strict;
use warnings;
use Tk;
my $main = MainWindow->new;
$main->Button(
-text => 'Goodbye, World',
-command => \&exit,
)->pack;
MainLoop();