waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

hello.c (180B)


      1 #include <Windows.h>
      2 
      3 int main(int argc, char* argv[])
      4 {
      5 	(void)argc;
      6 	(void)argv;
      7 
      8 	WriteConsole(GetStdHandle(STD_OUTPUT_HANDLE), "Hello world!\n", 13, NULL, NULL);
      9 
     10 	return 0;
     11 }