#include #ifdef _WIN32 #include #endif int main(int argc, char ** argv) { std::cout << "hello world" << std::endl; #ifdef _WIN32 MessageBoxA(NULL, "Hello world", "Hello Box", MB_OK); #endif return 0; }