mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 18:31:44 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
16 lines
234 B
C++
16 lines
234 B
C++
#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;
|
|
}
|