view en/examples/results/tour.merge.parents.out @ 709:4432ad34b8e5

Check in example outputs with begin/end markers.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 31 Mar 2009 12:19:01 -0700
parents 0d5935744f87
children
line wrap: on
line source

<!-- BEGIN tour.merge.parents -->
<screen><prompt>$</prompt> <userinput>hg parents</userinput>
changeset:   
user:        Bryan O'Sullivan &lt;bos@serpentine.com&gt;

summary:     A new hello for a new day.

changeset:   
tag:         tip
parent:      
user:        Bryan O'Sullivan &lt;bos@serpentine.com&gt;

summary:     Added an extra line of output

<prompt>$</prompt> <userinput>cat hello.c</userinput>
/*
 * Placed in the public domain by Bryan O'Sullivan.  This program is
 * not covered by patents in the United States or other countries.
 */

#include &lt;stdio.h&gt;

int main(int argc, char **argv)
{
	printf("once more, hello.\n");
	printf("hello, world!\");
	printf("hello again!\n");
	return 0;
}
</screen>
<!-- END tour.merge.parents -->