Initial Commit

This commit is contained in:
2026-09-07 15:16:52 -04:00
commit e8ce633e5e
54 changed files with 13079 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#include "numbers.hpp"
#include "config.hpp"
int increment(int value) { return value + DEMO_INCREMENT; }

View File

@@ -0,0 +1,4 @@
#pragma once
template<class T>
concept Addable = requires(T value) { value + value; };
int increment(int value);