9 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use strict;
use TK;
my $haupt = new MainWindow;
$haupt->Label(-text => "Greetings!")->pack;
$haupt->Button(-text=>"Beenden",
-command=>[$haupt=>'destroy']
)->pack;
$haupt->MainLoop(); # hier fehlte was!
$haupt->MainLoop();
use TK
9 Einträge, 1 Seite |