#include <iostream> using std::cout, std::endl; namespace greeting { const char *hello = "Hello, world!"; } int main () { cout << hello << endl; return 0; }