main.cpp 1.0 KB

12345678910111213141516171819
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* main.cpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2026/01/05 12:47:49 by bchanot #+# #+# */
  9. /* Updated: 2026/01/05 12:54:24 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "ScalarConverter.hpp"
  13. int main(int ac, char **av) {
  14. if (ac > 1) {
  15. ScalarConverter::convert(av[1]);
  16. }
  17. }