mirror of
https://github.com/boostorg/yap.git
synced 2026-02-22 16:02:10 +00:00
12 lines
175 B
C++
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;
|
|
}
|