Files
cpp06/ex00/main.cpp
2025-08-15 15:11:43 +02:00

11 lines
199 B
C++

#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]);
}