dogedogedoge
In the system and I’m ruining the bugs
- Joined
- Sep 23, 2025
- Posts
- 1,220
- Reputation
- 1,513
C++:
#include <iostream>
class User {
private:
std::string username;
int rep;
public:
User(std::string usr) {
username = usr;
rep = 0;
}
setRep(int r) {
rep = r;
}
};
int main() {
User me(std::string("dogedogedoge"));
me.setRep(999999999);
std::cout << "yo this might be my new main ide :D" << std::endl;
return 0;
}
this shit definitely got syntax errors
im rusty