• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (C) 2016-2018 T. Zachary Laine
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See
4 // accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 //[hello_world
7 
8 #include <boost/yap/expression.hpp>
9 
10 #include <iostream>
11 
12 
main()13 int main ()
14 {
15     evaluate(boost::yap::make_terminal(std::cout) << "Hello" << ',' << " world!\n");
16 
17     return 0;
18 }
19 //]
20