Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yottaawesome/cpp-playground

Random C++ experiments.
https://github.com/yottaawesome/cpp-playground

List: cpp-playground

cpp cpp20 cpp23 experiments msvc visual-studio

Last synced: about 1 month ago
JSON representation

Random C++ experiments.

Awesome Lists containing this project

README

        

# C++ Playground

## Introduction

This repo just holds some random C++ experiments to evaluate various features of the language. Some of the samples are derived from external sources, which are credited in the relevant source files.

## Building

You'll need the latest version of Visual Studio 2022 with _Desktop C++ Development with C++_ workload installed. This is because some samples test features only recently standardised (such as modules and ranges), of which older versions of VS may not support. Once you have done this, simply open the `C++Experiments` solution and build it. Some projects collapse multiple samples to avoid having too many projects; simply modify the `main.cpp` file to adjust which sample to run.

## Additional resources

* [ISO C++](https://isocpp.org/)
* [cppreference.com](cppreference.com)
* [CPlusPlus.com](https://cplusplus.com/)
* [Rainer Grimm's Modernes C++](https://www.modernescpp.com)
* [Jonathan Boccara's Fluent C++](https://www.fluentcpp.com/)
* [Bartlomiej Filipek's C++ Stories](https://www.cppstories.com/p/start-here/)
* [Jason Turner's C++ Weekly](https://www.youtube.com/@cppweekly)
* [Andreas Fertig's blog](https://andreasfertig.blog/)
* [Marius Bancila's blog](https://mariusbancila.ro/blog/)
* [Sandor Dargo's site](https://www.sandordargo.com/)
* [vector-of-bool's blog](https://vector-of-bool.github.io/)
* [Giovanni Dicanio's blog](https://giodicanio.com/)