preload
Oct 28

Hello World

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env perl
 
# helloworld.pl
#
# Created by Chun-Ting Liu on 2009-10-28
 
require 5.008008;
use warnings;
use strict;
use Tk;
my $mw = MainWindow->new;	#撱箇銝閬蝒
$mw->title("Hello World");	#寡閬蝒璅憿摮嚗交摰閮剔箸嚗擐摮瘥芸憭批神嚗title method銝臬閬雿瘥頛憟賜
$mw->Button(-text => "Done!",
	-command => sub { exit })->pack();
	#撱箇銝撖怨Done!Button widget嚗暺敺瑁 exit
MainLoop;	#憪GUI鈭隞嗉

Hello World

Tagged with: