feat: implement CPP02 C++20 card

This commit is contained in:
user
2026-07-21 20:11:42 +02:00
commit 3891352ee8
36 changed files with 7625 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <iostream>
constexpr int square(int value) { return value * value; }
int main() {
constexpr int result = square(7);
const int limit{12};
static_assert(result == 49);
std::cout << "square=" << result << " limit=" << limit << '\n';
}