Files
seer/tests/hellosegv/hellosegv.cpp
T

22 lines
346 B
C++
Raw Normal View History

2025-04-05 10:35:18 -05:00
#include "CrashCatch.hpp"
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) {
// CrashCatch::enable();
2025-04-05 10:35:18 -05:00
2021-09-05 11:58:58 -05:00
for (int i=0; i<argc; i++) {
std::cout << "XX: " << i << " " << argv[i] << std::endl;
}
std::string message = "Hello, World!";
function1(message);
return 0;
}