Subversion Repositories Vertical

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 mjames 1
#!/user/mjames/cadbin/perl -w
2
 
3
use Tk;
4
 
5
my $mw = MainWindow->new;
6
 
7
$mw->Button( -x=>1 , -text=>"Hello" , -command=>sub{exit}  )->grid;
8
 
9
$mw->Button( -x=>2 , -text=>"more" , -command=>sub{exit} )->grid;
10
 
11
MainLoop;
12