mirror of
https://github.com/boostorg/test.git
synced 2026-01-27 19:32:11 +00:00
11 lines
203 B
C++
Executable File
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;
|
|
}
|
|
//]
|