hgbook

annotate en/examples/tour.merge.cat.out @ 260:ec6a3bb10986

HTML: replace Unicode ligatures with plain ASCII.
Thanks to Johannes Hoff for spotting this.
author Bryan O'Sullivan <bos@serpentine.com>
date Sun Jun 17 11:09:13 2007 -0700 (2007-06-17)
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 \}