/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/03 19:38:09 by adjoly #+# #+# */ /* Updated: 2025/04/09 10:31:55 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "ScalarConverter.hpp" #include int main(int ac, char **av) { if (ac < 2) { std::cout << "needs an input ! :D" << std::endl; return 1; } ScalarConverter::convert(av[1]); }