summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/hello/hello.cpp
blob: 888e78b1cd0b08ddce22926592c14ccf0b749d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//  Copyright (c) 2003 Vladimir Prus
//
//  Distributed under the Boost Software License, Version 1.0. (See
//  accompanying file LICENSE.txt or copy at
//  https://www.bfgroup.xyz/b2/LICENSE.txt)

// tag::source[]
#include <iostream>

int main()
{
    std::cout << "Hello!\n";
}
// end::source[]