1 /* 2 * Copyright 2006, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 9 10 #include <stdio.h> 11 12 #include "App.h" 13 14 int main(int argc,char ** argv)15main(int argc, char** argv) 16 { 17 new App(); 18 be_app->Run(); 19 delete be_app; 20 return 0; 21 } 22