File: test.cpp

package info (click to toggle)
kball 0.0.20041216-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 10,988 kB
  • sloc: cpp: 4,276; makefile: 66; sh: 64; ansic: 43
file content (21 lines) | stat: -rw-r--r-- 706 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ---------------------------------------------------------------------
// test.c
// ---------------------------------------------------------------------
// This is a test program
// The only purpose of this program is to check 
// if you can compile Allegro programs.
// By Kronoman - In lovin memory of my father - October 2003
// ---------------------------------------------------------------------

#include <allegro.h> // Allegro : http://alleg.sf.net/
#include <aldumb.h>  // DUMB : http://dumb.sf.net/

int main()
{
    allegro_init();

    allegro_message("This is a test program to check if you can compile Allegro programs.\nYou can safely erase this program.\n");

return 0;
}
END_OF_MAIN();