view hello.c @ 1:82e55d328c8c default tip

Create a makefile
author mpm@selenic.com
date Fri, 26 Aug 2005 01:21:28 -0700
parents 0a04b987be5a
children
line wrap: on
line source

/*
 * hello.c
 *
 * Placed in the public domain by Bryan O'Sullivan
 *
 * This program is not covered by patents in the United States or other
 * countries.
 */

#include <stdio.h>

int main(int argc, char **argv)
{
	printf("hello, world!\n");
	return 0;
}