tke-log-parser/source/main.cpp
2024-03-21 22:13:52 -03:00

12 lines
212 B
C++

#include <iostream>
#include <string>
#include "lib.hpp"
auto main() -> int
{
auto const lib = library {};
auto const message = "Hello from " + lib.name + "!";
std::cout << message << '\n';
return 0;
}