Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itrooz/this-is-cpp
https://github.com/itrooz/this-is-cpp
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/itrooz/this-is-cpp
- Owner: iTrooz
- License: cc0-1.0
- Created: 2024-05-12T13:44:23.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-13T00:51:37.000Z (6 months ago)
- Last Synced: 2024-05-13T14:47:45.243Z (6 months ago)
- Language: Makefile
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How to build
- `make`
- `./a.out`I used g++ 14.1.1 on ArchLinux as of 2024-05-12 to compile it, but it should probably work on older versions/systems as well
## Sources:
- `and` keyword: (https://en.cppreference.com/w/cpp/language/operator_alternative)
- Function declaration: C++11 (https://en.cppreference.com/w/cpp/language/function 2)
- module system: C++20 (https://en.cppreference.com/w/cpp/language/modules). They are not quite working yet (the standard library modules seems to not be distributed in most distributions yet ?), so I had to create a build script to compiled the required headers into modules.
- `std::println()`: C++23 (https://en.cppreference.com/w/cpp/io/println 1)