Gitiles
Code Review
Sign In
gerrit.benkard.de
/
hello-world-ng
/
f59e0976a8c575fb46a2d6dce0a8e8ef63a90dd2
/
.
/
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
;
}