#ifndef GREETER_HPP
#define GREETER_HPP

#include <string>

namespace greeter {
std::string english();
std::string polish();
std::string greek();
}

#endif
