Files
CPP_Module_06/ex00/main.cpp

23 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/03 19:38:09 by adjoly #+# #+# */
/* Updated: 2025/04/09 10:31:55 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#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]);
}