Gitiles
Code Review
Sign In
gerrit.benkard.de
/
hello-world-ng
/
3314730208e15eead58b9d9c7cfbe1161f02f704
/
.
/
hello-world-ng.cpp
blob: d6e2ec39f814a6e206adbd158d0be62b80667023 [
file
] [
log
] [
blame
]
Matthias Andreas Benkard
3314730
2018-04-09 21:22:22 +0200
[
diff
] [
blame^
]
1
#include
<iostream>
2
#include
<cstdlib>
3
4
int
main
(
int
,
char
**)
{
5
std
::
cout
<<
"Hello world!"
<<
std
::
endl
;
6
return
EXIT_SUCCESS
;
7
}