2
0
mirror of https://github.com/boostorg/yap.git synced 2026-01-28 19:52:15 +00:00
Files
yap/example/hello_world.cpp
2016-12-12 00:00:49 -06:00

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;
}
//]