Muskovitz has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks,
I am exploring the perl module SDL SDLx::App
but everytime i run my script it's getting not responding, i use Win7
everytime i run my script it hangs i can't drag it the only thing to close the program is to Ctrl+C in cmd. Thanks in advance!#!/usr/bin/perl use strict; use warnings; use SDL; use SDLx::App; my $app=SDLx::App->new(h=>400,w=>400,t=>"SDL Tutorial",exit_on_quit=>1 +); $app->draw_circle([10,10],30,[255,255,0,255]); $app->update; $app->run;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: My perl SDL app is getting not responding in Windows
by ww (Archbishop) on Mar 13, 2015 at 18:35 UTC |