8 lines
172 B
C++
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;
|
|
}
|
|
|