view en/examples/results/tour.merge.cat.out @ 663:0d5935744f87

Switch from LaTeX to XML for examples.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon, 09 Mar 2009 21:39:23 -0700
parents 44d1363234d2
children 4432ad34b8e5
line wrap: on
line source

<screen><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!\");
	return 0;
}
<prompt>$</prompt> <userinput>cat ../my-hello/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("hello, world!\");
	printf("hello again!\n");
	return 0;
}
</screen>