mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 21:42:35 +03:00
8 lines
202 B
C
8 lines
202 B
C
|
#include <windows.h>
|
||
|
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPSTR lpCmdLine,
|
||
|
int nCmdShow)
|
||
|
{
|
||
|
MessageBox(NULL, "Hello World!", "Nix", MB_OK);
|
||
|
return 0;
|
||
|
}
|