view examples/hello.c @ 471:84d7bb9b94fa

* doc/.cvsignore: Added this file to ignore generated HTML files.
author nickg
date Sun, 22 Dec 2002 11:20:47 +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;
}