First Post

August 22, 2024 (4w ago)

console.log("Hello, World!");
class Blog {
public:
    int posts = 1;
    int thisPost = 1;
    void post();
}
 
Blog blog;
blog.post()