2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-31 08:02:14 +00:00
Files
build/example/hello/hello.cpp
Rene Rivera 4c511f1560 Add first example into documentation.
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.
2017-07-11 10:54:16 -06:00

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;
}
//]