Thread Lokale Anwendung für Dateierstellung
(32 answers)
Opened by bianca at 2011-12-14 08:29
Hab es mal hiermit getestet
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/perl -w use strict; use warnings; use Wx; my $app = Wx::SimpleApp->new; my $frame = Wx::Frame->new( undef, -1, 'Hello, world!' ); $frame->Show; $app->MainLoop; Über Konsole gestartet läuft es. Dann mit pp test.pl kompiliert zu einer a.exe mit 5.315.035 Byte. Wenn ich die a.exe starte öffnet sich eine Konsole und es passiert weiter nichts. Was mache ich falsch? Danke Euch 10 print "Hallo"
20 goto 10 |