hgbook

view en/examples/results/tour.merge.parents.out @ 648:e0ac2341a861

Fix building error introduced by bos at rev 8366882f67f2
author Dongsheng Song <dongsheng.song@gmail.com>
date Wed Mar 18 21:50:57 2009 +0800 (2009-03-18)
parents 44d1363234d2
children 4432ad34b8e5
line source
1 <screen><prompt>$</prompt> <userinput>hg parents</userinput>
2 changeset:
3 user: Bryan O'Sullivan &lt;bos@serpentine.com&gt;
5 summary: A new hello for a new day.
7 changeset:
8 tag: tip
9 parent:
10 user: Bryan O'Sullivan &lt;bos@serpentine.com&gt;
12 summary: Added an extra line of output
14 <prompt>$</prompt> <userinput>cat hello.c</userinput>
15 /*
16 * Placed in the public domain by Bryan O'Sullivan. This program is
17 * not covered by patents in the United States or other countries.
18 */
20 #include &lt;stdio.h&gt;
22 int main(int argc, char **argv)
23 {
24 printf("once more, hello.\n");
25 printf("hello, world!\");
26 printf("hello again!\n");
27 return 0;
28 }
29 </screen>