mirror of
https://github.com/boostorg/build.git
synced 2026-01-31 08:02:14 +00:00
This uses quickbook to add an appendix of examples directly from the source tree. The inclusion of the examples is done with glob so that we can just add examples by having a "readme.qbk" in the example we want to document.
19 lines
328 B
C++
19 lines
328 B
C++
// Copyright (c) 2003 Vladimir Prus
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See
|
|
// accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// http://www.boost.org
|
|
//
|
|
|
|
//[hello_cpp
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello!\n";
|
|
return 1;
|
|
}
|
|
//]
|