hgbook

view en/examples/results/tour.merge.cat.out @ 611:4432ad34b8e5

Check in example outputs with begin/end markers.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue Mar 31 12:19:01 2009 -0700 (2009-03-31)
parents 0d5935744f87
children
line source
1 <!-- BEGIN tour.merge.cat -->
2 <screen><prompt>$</prompt> <userinput>cat hello.c</userinput>
3 /*
4 * Placed in the public domain by Bryan O'Sullivan. This program is
5 * not covered by patents in the United States or other countries.
6 */
8 #include &lt;stdio.h&gt;
10 int main(int argc, char **argv)
11 {
12 printf("once more, hello.\n");
13 printf("hello, world!\");
14 return 0;
15 }
16 <prompt>$</prompt> <userinput>cat ../my-hello/hello.c</userinput>
17 /*
18 * Placed in the public domain by Bryan O'Sullivan. This program is
19 * not covered by patents in the United States or other countries.
20 */
22 #include &lt;stdio.h&gt;
24 int main(int argc, char **argv)
25 {
26 printf("hello, world!\");
27 printf("hello again!\n");
28 return 0;
29 }
30 </screen>
31 <!-- END tour.merge.cat -->