summaryrefslogtreecommitdiff
path: root/win/hello.c
blob: 4934689b066221d40938376dbeeb6ff5434fde44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Test program for C compiler; if this doesn't compile, the
 * C compiler is seriously broken.
 */

#include <stdlib.h>
#include <stdio.h>

int main(void)
{
    printf("Hello, World!\n");
    return 0;
}