Gitiles
Code Review
Sign In
gerrit.benkard.de
/
hello-world-ng
/
4c71268bbd87f4800771c4d0d68030e40eda28f6
/
.
/
exe
/
hello-world-ng.cpp
blob: f59229c29e4465cdc25200eb18a51784f4277a9b [
file
] [
log
] [
blame
]
#include
<mod/greeting.hpp>
#include
<iostream>
#include
<cstdlib>
int
main
(
int
,
char
**)
{
std
::
cout
<<
greeting
::
make_greeting
(
"world"
)
<<
std
::
endl
;
return
EXIT_SUCCESS
;
}