1 2 3 4 5 6 7 8 9 10 11
#include "foo.hpp" #include "bar.hpp" #include "baz.hpp" #include <iostream> #include <ostream> int main(int argc, char **argv) { std::cout << "Hello-from-main" << std::endl; std::cout << foo(bar(baz(13))) << std::endl; }