The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
use strict;
use warnings;

use Win32::GUI();

my $DOS = Win32::GUI::GetPerlWindow();
Win32::GUI::Hide($DOS);

my $main = Win32::GUI::Window->new(
	-name => 'Main',
	-text => 'Perl',
	-width => 200,
       	-height => 200
);

$main->Show();
Win32::GUI::Dialog();

Win32::GUI::Show($DOS);

exit(0);

sub Main_Terminate {
	return -1;
}