mirror of
https://github.com/boostorg/yap.git
synced 2026-01-28 19:52:15 +00:00
15 lines
195 B
C++
15 lines
195 B
C++
//[hello_world
|
|
|
|
#include <boost/yap/expression.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
int main ()
|
|
{
|
|
evaluate(boost::yap::make_terminal(std::cout) << "Hello" << ',' << " world!\n");
|
|
|
|
return 0;
|
|
}
|
|
//]
|