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

7
examples/cmake/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "numbers.hpp"
template<Addable T>
T twice(T value) { return value + value; }
constexpr int evaluation_mode() {
if consteval { return 1; } else { return 2; }
}
int main() { return increment(twice(20)) + evaluation_mode(); }