view examples/hello.c @ 391:b69e341d77cd

Fix expression typo, reported by Andrew Lunn and David Smith
author bartv
date Sun, 27 Oct 2002 15:04:06 +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;
}