/* hello.c - main */
/*----------------------------------------------------------------------
* main - simplest possible test program for Xinu (hello world)
*----------------------------------------------------------------------
*/
main()
{
printf("hello world.\n");
}