Select Git revision
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;
}