= C++ = <> ---- == Example == A hello world program will look like: {{{ #include int main() { std::cout << "Hello World!\n"; return 0; } }}} To compile and run, try: {{{ g++ -o hello hello.cpp ./hello }}} ---- == Installation == See [[C#Installation|the instructions for installing C]]. ---- == Tool Chain == * [[C++/BuildFlags|Build Flags]] == Data Types == * [[C++/PointersAndReferences|Pointers and References]] ---- CategoryRicottone