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();
|