Skip to content
Snippets Groups Projects
Select Git revision
  • 753f823b4e9fde3eaa76a95362c7d0f0791e7aef
  • master default protected
2 results

w2v_yelp_model.cpython-38.pyc

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