2
0
mirror of https://github.com/boostorg/yap.git synced 2026-02-22 16:02:10 +00:00
Files
yap/example/hello_world.cpp
2016-12-07 20:01:24 -06:00

12 lines
175 B
C++

#include <boost/yap/expression.hpp>
#include <iostream>
int main ()
{
evaluate(boost::yap::make_terminal(std::cout) << "Hello" << ',' << " world!\n");
return 0;
}