Files
seer/tests/hellosegv/hellosegv.cpp
T
2022-03-06 20:49:14 -06:00

18 lines
289 B
C++

#include "function1.h"
#include <string>
#include <iostream>
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;
}