#!/usr/bin/wxPerl use strict; use warnings; use Wx; my $app = new Wx::App(); while (my $name = Wx::GetTextFromUser('Wie heisst Du?', 'hase.pl')) { Wx::MessageBox("Hallo $name!", 'hase.pl'); }