view examples/hello.c @ 326:afd0ab675643

Reinstate accidentally deleted examples
author jlarmour
date Tue, 03 Sep 2002 16:03:16 +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;
}