Skip to content

Instantly share code, notes, and snippets.

View BillyBoyMF's full-sized avatar

BillyBoyMF

  • Joined Oct 11, 2025
View GitHub Profile
@BillyBoyMF
BillyBoyMF / ModernCPPAllFeatures.cpp
Last active October 13, 2025 18:41
Single C++ file showcasing key features from C++11 to C++26 with inline explanations.
// modern_cpp_all_features.cpp
// Demonstration of key features from C++11 → C++26
// Compile with: g++ -std=c++2c modern_cpp_all_features.cpp -o demo
#include <iostream>
#include <memory>
#include <vector>
#include <thread>
#include <tuple>
#include <optional>