Files
perl-examples/gui-tk.pl
2023-02-25 02:14:32 +09:00

13 lines
253 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use utf8;
use Tk; # sudo apt install perl-tk
my $mw = MainWindow->new();
$mw->Label(-text => '안녕! 밥은 먹고 다니냐?')->pack;
$mw->Button(
-text => '종료',
-command => sub { exit },
)->pack;
MainLoop;