hello.c
author Anthony Ly <anthonyly.com@gmail.com>
Wed, 03 Oct 2012 11:09:12 +0200
changeset 87 0b1e09cbe160
parent 79 8c6d2cf28de5
child 98 bb1d25d50d73
permissions -rw-r--r--
resolve readme

/*
 * 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("once more, hello.\n");
	printf("hello merged ?");
	return 0;
}