org has codeblocks?

dogedogedoge

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 :lul::lul:

im rusty
 
  • +1
Reactions: duhz
Whatever that fuckin means
 
  • +1
Reactions: duhz and dogedogedoge

Similar threads

xXXxZeusxXXx
Replies
2
Views
24
Surfsup
Surfsup
Sandriguez
Replies
27
Views
195
Clayed.nas
Clayed.nas
OverSince08
Replies
0
Views
14
OverSince08
OverSince08
D
Replies
3
Views
76
White_Bwoi
White_Bwoi
munnabhai
Discussion tgun has left org
Replies
1
Views
39
kisslessvirgin
kisslessvirgin

Users who are viewing this thread

Back
Top