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

12 lines
169 B
C++

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