main.cc (282B)
1 #include <iostream> 2 3 #include "foo.h" 4 #include "bar.h" 5 6 int main(int argc, char** argv) { 7 for (auto i = 0; i < argc; ++i) 8 std::cout << "argv[" << i << "]: " << argv[i] << std::endl; 9 10 auto x = Foo(3); 11 auto y = Bar(x); 12 std::cout << "x=" << x << ",y=" << y << std::endl; 13 }