Listing 1. Code for testing Allegro installation.
#include "allegro.h"
int main(){
  allegro_init();
  allegro_message("Hello World!");
  return 0;
}
END_OF_MAIN();