Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yottaawesome/cpp-playground
- Owner: yottaawesome
- License: mit
- Created: 2020-01-19T05:04:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T00:35:37.000Z (about 1 month ago)
- Last Synced: 2024-11-09T01:25:24.238Z (about 1 month ago)
- Topics: cpp, cpp20, cpp23, experiments, msvc, visual-studio
- Language: C++
- Homepage:
- Size: 1.41 MB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)