Everything builds and works again.
[fail.git] / src / services / lua / test / main.cpp
blob16ba7d836c2e7597260b88a4968519f01f4a12a1
1 #include <stdexcept>
2 #include <iostream>
3 #include "testapp.h"
5 using namespace std;
6 using namespace luatestapp;
8 int main( int argc, char** argv )
10 try
12 LuaTestApp app;
13 app.run();
15 catch( std::exception& e )
17 cerr << e.what() << endl;
18 return -1;
21 return 0;