Files
seer/tests/hellosegv/hellosegv.cpp
T

18 lines
289 B
C++
Raw Normal View History

2022-03-06 20:49:14 -06:00
#include "function1.h"
2021-09-05 11:58:58 -05:00
#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;
}