fix some example and readme

This commit is contained in:
2025-09-05 18:48:48 +03:00
parent 0418fce44c
commit 00d96e3e2c
11 changed files with 81 additions and 85 deletions

View File

@@ -0,0 +1,13 @@
#include "hack/math/max.hpp"
#include "hack/logger/logger.hpp"
auto main(int argc, char *argv[]) -> int
{
int a = 4, b = 5;
int& c = a;
hack::log()(hack::math::max(4, 5));
hack::log()(hack::math::max(c, b));
return 0;
}