Files
seer/tests/hellosegv/hellosegv.cpp
T

19 lines
312 B
C++
Raw Normal View History

2021-09-05 11:58:58 -05:00
#include <string>
#include <iostream>
void function1 (const std::string& message);
int main (int argc, char** argv) {
for (int i=0; i<argc; i++) {
std::cout << "XX: " << i << " " << argv[i] << std::endl;
}
std::string message = "Hello, World!";
function1(message);
return 0;
}