hgbook

view en/examples/results/tour.merge.parents.out @ 564:0d5935744f87

Switch from LaTeX to XML for examples.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon Mar 09 21:39:23 2009 -0700 (2009-03-09)
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>