PhoenixCIToolkitCPP  7.0.0
CI/CD Catalog to store Phoenix components
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1#include <iostream>
2#include <fstream>
3
4int main() {
5 std::cout << "Hello, World!" << std::endl;
6 //Write dummy log file for testing test job additional artifacts
7 std::ofstream logFile;
8 logFile.open("hello_world.log");
9 logFile << "Hello, World!" << std::endl;
10 logFile.close();
11 return 0;
12}
int main()
Definition main.cpp:4