aboutsummaryrefslogtreecommitdiff
path: root/samples/C/hello.c
blob: c3ce44592e67f4e9f17b704e517b0303c764802b (plain)
1
2
3
4
5
6
7
#include <stdio.h>

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