mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +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
217 B
C
16 lines
217 B
C
#include <stdio.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
printf("Hello, World!\n");
|
|
|
|
#ifdef _WIN32
|
|
MessageBoxA(NULL, "Hello, World!", "Hello", MB_OK);
|
|
#endif
|
|
return 0;
|
|
}
|