hgbook

view en/examples/tour.merge.parents.out @ 930:71e726b7f70d

Hum, i don't think that Fink on mac is actually apt-get :)
author Romain PELISSE <romain.pelisse@atosorigin.com>
date Sun Feb 08 22:08:47 2009 +0100 (2009-02-08)
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 \}