🎉」 init: hello world !

This commit is contained in:
2025-08-16 20:30:27 +02:00
commit e0535f2b4a
9 changed files with 375 additions and 0 deletions

21
ex00/whatever.hpp Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
template <typename T> void swap(T &a, T &b)
{
T tmp;
tmp = a;
a = b;
b = tmp;
}
template <typename T> T min(T &a, T &b)
{
return (a < b ? a : b);
}
template <typename T> T max(T &a, T&b)
{
return (a > b ? a : b);
}