/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/28 08:44:43 by narnaud #+# #+# */ /* Updated: 2022/07/12 08:09:02 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "Converter.hpp" using std::cout; using std::endl; using std::string; int main(int ac, char **av) { if (ac != 2) return (EXIT_FAILURE); string input = av[1]; Converter raw(input); }