prim: Introduces Python version
[lcapit-junk-code.git] / hello.cpp
blob685dc501d268cfcc8f01396a9ce4220eb89762ce
1 // C++ Hello world
2 //
3 // Compile with:
4 //
5 // $ g++ -o hell hello.cpp
7 #include <iostream>
9 int main(void)
11 std::cout << "Hello, world!\n";