hgbook

annotate en/examples/tour.merge.cat.out @ 449:9b3cc9f398f9

Finished MQ chapter translation

Added translation term fold
author Igor TAmara <igor@tamarapatino.org>
date Sat Dec 13 12:23:51 2008 -0500 (2008-12-13)
parents
children
rev   line source
bos@144 1 $ \textbf{cat hello.c}
bos@144 2 /*
bos@144 3 * Placed in the public domain by Bryan O'Sullivan. This program is
bos@144 4 * not covered by patents in the United States or other countries.
bos@144 5 */
bos@144 6
bos@144 7 #include <stdio.h>
bos@144 8
bos@144 9 int main(int argc, char **argv)
bos@144 10 \{
bos@144 11 printf("once more, hello.\textbackslash{}n");
bos@144 12 printf("hello, world!\textbackslash{}");
bos@144 13 return 0;
bos@144 14 \}
bos@144 15 $ \textbf{cat ../my-hello/hello.c}
bos@144 16 /*
bos@144 17 * Placed in the public domain by Bryan O'Sullivan. This program is
bos@144 18 * not covered by patents in the United States or other countries.
bos@144 19 */
bos@144 20
bos@144 21 #include <stdio.h>
bos@144 22
bos@144 23 int main(int argc, char **argv)
bos@144 24 \{
bos@144 25 printf("hello, world!\textbackslash{}");
bos@144 26 printf("hello again!\textbackslash{}n");
bos@144 27 return 0;
bos@144 28 \}