PhoenixCIToolkitCPP  7.0.0
CI/CD Catalog to store Phoenix components
Loading...
Searching...
No Matches
main.cpp File Reference
#include <iostream>
#include <fstream>
+ Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 4 of file main.cpp.

4 {
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}