mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
18 lines
289 B
C++
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;
|
||
|
|
}
|
||
|
|
|