shrub/nix/nixcrpkgs/pkgs/hello_cpp/hello.cpp

16 lines
234 B
C++
Raw Normal View History

#include <iostream>
#ifdef _WIN32
#include <windows.h>
#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;
}