view examples/hello.c @ 2239:13f82d4fe6f2

Fix a date so it is no longer in the future.
author asl
date Sun, 18 Jun 2006 11:18:23 +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;
}