Skip to content
Snippets Groups Projects
Select Git revision
  • 7cd5a35e6d362aa7a72cf7a594d873e0e1d77b69
  • master default protected
  • cvh
  • main
4 results

dashboard.py

Blame
  • namespaces-04.cpp 166 B
    #include <iostream>
    
    using std::cout, std::endl;
    
    namespace greeting
    {
      const char *hello = "Hello, world!";
    }
    
    int main ()
    {
      cout << hello << endl;
      return 0;
    }