Imported kball_final_src_16dec2004.tar.gz
[kball.git] / test.cpp
blob8590f6997535369448b1104578ab637038ad73e2
1 // ---------------------------------------------------------------------
2 // test.c
3 // ---------------------------------------------------------------------
4 // This is a test program
5 // The only purpose of this program is to check
6 // if you can compile Allegro programs.
7 // By Kronoman - In lovin memory of my father - October 2003
8 // ---------------------------------------------------------------------
10 #include <allegro.h> // Allegro : http://alleg.sf.net/
11 #include <aldumb.h> // DUMB : http://dumb.sf.net/
13 int main()
15 allegro_init();
17 allegro_message("This is a test program to check if you can compile Allegro programs.\nYou can safely erase this program.\n");
19 return 0;
21 END_OF_MAIN();