hgbook

annotate ja/examples/tour.merge.cat.out @ 966:39d37f84beaf

adding more new files - probably generated but still in versionning
author Romain PELISSE <belaran@gmail.com>
date Sun Aug 16 13:20:24 2009 +0200 (2009-08-16)
parents
children
rev   line source
foozy@708 1 $ \textbf{cat hello.c}
foozy@708 2 /*
foozy@708 3 * Placed in the public domain by Bryan O'Sullivan. This program is
foozy@708 4 * not covered by patents in the United States or other countries.
foozy@708 5 */
foozy@708 6
foozy@708 7 #include <stdio.h>
foozy@708 8
foozy@708 9 int main(int argc, char **argv)
foozy@708 10 \{
foozy@708 11 printf("once more, hello.\textbackslash{}n");
foozy@708 12 printf("hello, world!\textbackslash{}");
foozy@708 13 return 0;
foozy@708 14 \}
foozy@708 15 $ \textbf{cat ../my-hello/hello.c}
foozy@708 16 /*
foozy@708 17 * Placed in the public domain by Bryan O'Sullivan. This program is
foozy@708 18 * not covered by patents in the United States or other countries.
foozy@708 19 */
foozy@708 20
foozy@708 21 #include <stdio.h>
foozy@708 22
foozy@708 23 int main(int argc, char **argv)
foozy@708 24 \{
foozy@708 25 printf("hello, world!\textbackslash{}");
foozy@708 26 printf("hello again!\textbackslash{}n");
foozy@708 27 return 0;
foozy@708 28 \}