Bring tests up to date.

This commit is contained in:
Ernie Pasveer
2023-08-26 10:50:58 -05:00
parent b26e2c8395
commit 151782a84c
13 changed files with 175 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#include <string>
#include <iostream>
void function1 (const std::string& message);
int main (int argc, char** argv) {
int j = 0;
for (int i=0; i<argc; i++) {
std::cout << "XX: "
<< i
<< " "
<< argv[i]
<< std::endl;
}
std::string message = "Hello, World!";
j++;
function1(message);
return 0;
}