blob: 53a55acd2d2143dd537d1c30d2fb36df4b1eb75f [file] [log] [blame]
#include <greeting/greeting.hpp>
#include <iostream>
#include <cstdlib>
int main(int, char **) {
std::cout << greeting::make_greeting("world") << std::endl;
return EXIT_SUCCESS;
}