Files
quickbook/test/preformatted.quickbook
Joel de Guzman e6f6fd357c fix line endings
[SVN r38547]
2007-08-09 02:07:16 +00:00

23 lines
440 B
Plaintext

[article Preformatted
]
[section Preformatted]
Here's the ubiquitous /Hello World/ program in C++.
[pre
#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}
]
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 `main`, on line 3.
[endsect]