Files
c-cpp-tests/single_file_tests/hello_main.cc
2020-05-30 19:45:28 +08:00

8 lines
172 B
C++

#include <iostream>
// compile: c++ --std=c++17 hello_main.cc
auto main(int argc, char** argv) -> int {
std::cout << "hello, have: " << argc << " args" << std::endl;
}