You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/28 08:44:43 by narnaud #+# #+# */
2 years ago
/* Updated: 2022/07/21 12:16:42 by narnaud ### ########.fr */
3 years ago
/* */
/* ************************************************************************** */
#include <iostream>
#include "Converter.hpp"
using std::string;
int main(int ac, char **av) {
if (ac != 2)
return (EXIT_FAILURE);
string input = av[1];
Converter raw(input);
}