mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 02:03:49 +00:00
16 lines
348 B
C++
16 lines
348 B
C++
// This is literally the best c++ code ever. I hope everyone reading this has a fantastic day.
|
|
|
|
struct Foo {
|
|
Bar bar, baz,
|
|
|
|
Foo() noexcept : bar(),baz() { delete Foo; }
|
|
|
|
void qux() const {
|
|
print("Hello, world!")
|
|
}
|
|
|
|
private:
|
|
|
|
bool bob() { hi };
|
|
};
|