hgbook

view en/examples/tour.merge.parents.out @ 289:7be02466421b

Oops, forgot to update the output
author Bryan O'Sullivan <bos@serpentine.com>
date Fri Jan 18 12:05:01 2008 -0800 (2008-01-18)
parents
children
line source
1 $ \textbf{hg parents}
2 changeset:
3 user: Bryan O'Sullivan <bos@serpentine.com>
5 summary: A new hello for a new day.
7 changeset:
8 tag: tip
9 parent:
10 user: Bryan O'Sullivan <bos@serpentine.com>
12 summary: Added an extra line of output
14 $ \textbf{cat hello.c}
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 <stdio.h>
22 int main(int argc, char **argv)
23 \{
24 printf("once more, hello.\textbackslash{}n");
25 printf("hello, world!\textbackslash{}");
26 printf("hello again!\textbackslash{}n");
27 return 0;
28 \}