hgbook

view en/examples/tour.merge.parents.out @ 314:231c8469a0ec

Removed a paragraph that is no longer true as of Subversion 1.5.
author Sean Russell <ser@ser1.net>
date Thu Aug 21 23:07:36 2008 -0400 (2008-08-21)
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 \}