🎉」 init: hello world !

This commit is contained in:
2025-08-15 15:11:43 +02:00
commit c9ae5bee78
13 changed files with 559 additions and 0 deletions

10
ex00/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "ScalarConverter.hpp"
#include <iostream>
int main(int ac, char **av) {
if (ac < 2) {
std::cout << "needs an input ! D:" << std::endl;
return 1;
}
ScalarConverter::convert(av[1]);
}