mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
7 lines
180 B
C
7 lines
180 B
C
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmdshow) {
|
|
printf("hello from WinMain\n");
|
|
return 0;
|
|
} |