about summary refs log tree commit diff
path: root/make/examples/trivial/hello.c
blob: 237ad8ffe76f34c38f8d86e2021a511ee7c35bde (plain) (blame)
1
2
3
4
5
6
7
#include <stdio.h>

int main(int argc, char * * argv)
{
    printf("Hello World\n");
    return 0;
}