Print the answer if the call to compute_answer is successful.
| 46 | |
| 47 | // Print the answer if the call to compute_answer is successful. |
| 48 | leaf::result<void> print_answer() noexcept |
| 49 | { |
| 50 | BOOST_LEAF_AUTO( answer, compute_answer()); |
| 51 | std::cout << "Answer: " << answer << std::endl; |
| 52 | return { }; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | int main() |
no test coverage detected