blob: a92b3f55ab46003280132fc44f18cca2a566d6b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE article PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
<article id="preformatted" last-revision="DEBUG MODE Date: 2000/12/20 12:00:00 $"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Preformatted</title>
<section id="preformatted.preformatted">
<title>Preformatted</title>
<para>
Here's the ubiquitous <emphasis>Hello World</emphasis> program in C++.
</para>
<programlisting>#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}
</programlisting>
<para>
The code should appear as a single block of code in a monospaced font and with
no syntax highlighting. The fifth and sixth lines should appear indented to
the right, aligning under <code><phrase role="identifier">main</phrase></code>,
on line 3.
</para>
<para>
Here's a one line function definitition:
</para>
<programlisting>void something(); </programlisting>
<para>
.
</para>
<para>
And some indented code:
</para>
<programlisting>void go()
{
}
</programlisting>
</section>
</article>
|