Just trying to make my first instance of a class in Visual Studio in C++ but it always leads to error code C2065. Here is my Code:
What am I forgetting? I think this should work:
int main() {
std::cout << "Hello World" << endl;
Testerus a;
}
class Testerus {
int a =3;
}