| Matthias Andreas Benkard | 38610ae | 2018-04-10 20:39:24 +0200 | [diff] [blame] | 1 | #include <mod/greeting.hpp> |
| 2 | |||||
| 3 | #include <iostream> | ||||
| 4 | #include <cstdlib> | ||||
| 5 | |||||
| 6 | int main(int, char **) { | ||||
| 7 | std::cout << greeting::make_greeting("world") << std::endl; | ||||
| 8 | return EXIT_SUCCESS; | ||||
| 9 | } | ||||