hgbook

view en/examples/tour.merge.parents.out @ 507:7f463aab0c07

merged ikks' changes
author Javier Rojas <jerojasro@devnull.li>
date Mon Jan 12 10:54:44 2009 -0500 (2009-01-12)
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 \}