」 feat: should have finished ex00

This commit is contained in:
2025-04-09 10:33:31 +02:00
parent 2b51c0baca
commit df7ffd0aeb
10 changed files with 198 additions and 29 deletions

View File

@ -6,12 +6,17 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/03 19:38:09 by adjoly #+# #+# */
/* Updated: 2025/04/03 19:51:28 by adjoly ### ########.fr */
/* Updated: 2025/04/09 10:31:55 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "ScalarConverter.hpp"
#include <iostream>
int main(void) {
int main(int ac, char **av) {
if (ac < 2) {
std::cout << "needs an input ! :D" << std::endl;
return 1;
}
ScalarConverter::convert(av[1]);
}