view examples/hello.c @ 1362:72507a6fc4c5

Remove confusing .ecm file
author gthomas
date Wed, 12 Nov 2003 22:26:21 +0000
parents ead06911cbae
children
line wrap: on
line source

/* this is a simple hello world program */
#include <stdio.h>

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