hello.c
author Julien Rougeron <julien.rougeron@iri.centrepompidou.fr>
Wed, 05 Sep 2012 15:03:08 +0200
changeset 76 94334f9a3ff3
child 77 89098f9e56b5
permissions -rw-r--r--
test add

/*
 * 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");
	return 0;
}