Select Git revision
exploit-2.c
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;
}