#include <iostream> int main() { std::cout << "Hello world!\n"; return 0; }
g++ hello.cpp -o hello $ ./hello Hello world!