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