mirror of
https://github.com/boostorg/yap.git
synced 2026-01-26 07:02:27 +00:00
12 lines
169 B
C++
12 lines
169 B
C++
#include "expression.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
int main ()
|
|
{
|
|
evaluate(boost::proto17::make_terminal(std::cout) << "Hello" << ',' << " world!\n");
|
|
|
|
return 0;
|
|
}
|