summaryrefslogtreecommitdiff
path: root/examples/hello_TARGETS/hello1/hello1.c
blob: 026f7e0fefc1229d9e5cec5424e1a813c852de84 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv )
{
  puts ("Hello World 1!");
  exit (0);
}