mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
10 lines
154 B
C
10 lines
154 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[], char *envp[])
|
|
{
|
|
printf("mingw: Hello, World!\n");
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|