view examples/hello.c @ 2592:f4ceaa469de9

* interp.cxx: Ignore file and directory names with a leading period.
author jld
date Mon, 10 Nov 2008 12:22:26 +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;
}