playground/cmake_demo/simple_caller/src/main.cpp
2024-08-31 22:26:15 -04:00

11 lines
164 B
C++

#include "header.h"
#include <iostream>
using std::cout;
using std::endl;
int main(int argc, char *argv[], char *envp[]) {
cout << hello() << endl;
return 0;
}