2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-27 19:32:11 +00:00
Files
test/doc/v2/examples/example24.cpp
Raffi Enficiaud 792b5e00f5 fixing source code
2014-03-04 02:35:58 +01:00

11 lines
203 B
C++
Executable File

//[example24
#include <iostream>
#include <boost/test/included/prg_exec_monitor.hpp>
int cpp_main( int, char* [] ) // note name cpp_main, not main.
{
std::cout << "Hello, world\n";
return 0;
}
//]