repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
web: home-page: Add new page
[lcapit-junk-code.git]
/
hello.cpp
blob
685dc501d268cfcc8f01396a9ce4220eb89762ce
1
// C++ Hello world
2
//
3
// Compile with:
4
//
5
// $ g++ -o hell hello.cpp
6
7
#include <iostream>
8
9
int
main
(
void
)
10
{
11
std
::
cout
<<
"Hello, world!
\n
"
;
12
}