RosettaCodeData/Task/Window-creation/Perl/window-creation-2.pl

8 lines
115 B
Perl
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
use SDL::App;
use SDL::Event;
$app = SDL::App->new;
$app->loop({
SDL_QUIT() => sub { exit 0; },
});