RosettaCodeData/Task/Hello-world-Graphical/Perl/hello-world-graphical-2.pl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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();