fellow monks,

i stumbled about the SDL::Library because i want to write a screensaver in perl. the docs are somewhat taciturn. so i decided to create a simple hello world. i assembled this:

use SDL::App; use SDL::Rect; use SDL::Event; use SDL::Constants; use SDL::Tool::Font; my $app = SDL::App->new ( -width => 640, -height => 480, -depth => 16, ); my $rect = SDL::Rect->new ( -height => 100, -width => 100, -x => 270, -y => 390, ); my $f = SDL::Tool::Font->new( -ttfont=>"Courier", ); my %actions = ( SDL_QUIT() => sub { exit(0); }, SDL_KEYDOWN() => sub { $f->print ($rect, 0, 0, "Key Pressed"); }, ); $app->loop(\%actions);

From what i´ve read this should work, but when i run it perl crashes. The exit code is -1073741819.

my os is winxp, perl is 5.8.6, SDL-library is 2.1


In reply to Hello world using SDL::App by holli

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.