// Copyright Abel Sinkovics (abel@sinkovics.hu) 2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include int main() { using boost::mpl::int_; std::cout << "fib 6 = " << fib::apply >::type::value << std::endl << "fact 4 = " << fact::apply >::type::value << std::endl << "times4 3 = " << times4::apply >::type::value << std::endl << "times11 2 = " << times11::apply >::type::value << std::endl; }