view examples/hello.c @ 1155:45d409ad9bf1

* ecos.db: Added support for the Samsung ARM9/SMDK2410 development board.
author nickg
date Wed, 06 Aug 2003 17:25:39 +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;
}