hgbook

view en/examples/results/tour.merge.cat.out @ 590:a2923aa93da9

Fix which files are included in the generated XML.
author Bryan O'Sullivan <bos@serpentine.com>
date Thu Mar 26 20:24:44 2009 -0700 (2009-03-26)
parents 44d1363234d2
children 4432ad34b8e5
line source
1 <screen><prompt>$</prompt> <userinput>cat hello.c</userinput>
2 /*
3 * Placed in the public domain by Bryan O'Sullivan. This program is
4 * not covered by patents in the United States or other countries.
5 */
7 #include &lt;stdio.h&gt;
9 int main(int argc, char **argv)
10 {
11 printf("once more, hello.\n");
12 printf("hello, world!\");
13 return 0;
14 }
15 <prompt>$</prompt> <userinput>cat ../my-hello/hello.c</userinput>
16 /*
17 * Placed in the public domain by Bryan O'Sullivan. This program is
18 * not covered by patents in the United States or other countries.
19 */
21 #include &lt;stdio.h&gt;
23 int main(int argc, char **argv)
24 {
25 printf("hello, world!\");
26 printf("hello again!\n");
27 return 0;
28 }
29 </screen>