kepka/cotire/src/main.cpp

13 lines
169 B
C++

// cotire example project main
#include <string>
#include "example.h"
#include "log.h"
int main()
{
std::string msg = example::get_message();
logging::info(msg);
}