#include <iostream>
#include <string>

class whatAmIEvenDoing {
public:
    static std::string what;
};

// required definition, don't put it in the header
std::string whatAmIEvenDoing::what = "I don't know!";

int main()
{
	// look ma, no instantiated objects!
	std::cout << whatAmIEvenDoing::what << std::endl;
}
