hgbook

view en/examples/tour.merge.parents.out @ 549:bc14f94e726a

Check in a known-broken example to fix up later - XXX
author Bryan O'Sullivan <bos@serpentine.com>
date Thu Jan 29 22:47:34 2009 -0800 (2009-01-29)
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 \}