Skip to content

Instantly share code, notes, and snippets.

View emneo-dev's full-sized avatar
❤️

Emily Flion emneo-dev

❤️
View GitHub Profile
@Ckath
Ckath / kotworld.gif
Last active April 18, 2022 18:48
why do gists embed
kotworld.gif
const std = @import("std");
const net = std.net;
const fs = std.fs;
const os = std.os;
pub const io_mode = .evented;
pub fn main() anyerror!void {
var general_purpose_allocator = std.heap.GeneralPurposeAllocator(.{}){};
const allocator = &general_purpose_allocator.allocator;

Orthodox C++

What is Orthodox C++?

Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.

Why not Modern C++?