I am learning C++, and learned that int-types are just premade classes. So I thought maybe i should try to create one.
What I want to do basically is a normal class of int
int x;
x=7;
cout << x;
// Output is 7 on screen.
so similarly...
abc x;
x=7;
cout << x;
What would I put in
class abc{
\\ HERE!!!!!! 
};
so I could do this
class SomeClass {
public:
    int x;
    SomeClass(int x) {
        this->x = x;
    }
};
int main(int argc, char *argv[]) {
    SomeClass s = 5;
    cout << s.x << "\n"; // 5
    s = 17;
    cout << s.x << "\n"; // 17
    return 0;
}
But as you can see I have to use s.x to print the value - I just want to use 's'. I am doing it as an experiment, I don't want to hear about how this method is good or bad, pointless or revolutionary, or can 't be done. I remember once I did it. But only by copying and pasting code that I didn't fully understand, and have even forgotten about.
 
     
     
     
     
     
     
    