/*
hello.c

A first program.
*/

#include <stdio.h>

main()
{
  printf( "hello, world!\n" ) ;
}
