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.
29 lines
1.1 KiB
29 lines
1.1 KiB
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* main.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/28 08:44:43 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/07/12 08:09:02 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include <iostream>
|
||
|
#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);
|
||
|
raw.display();
|
||
|
|
||
|
}
|