ex00 and ex01

This commit is contained in:
2026-03-01 00:28:26 +01:00
commit 8a78b30d08
8 changed files with 484 additions and 0 deletions

22
ex00/main.cpp Normal file
View File

@@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/28 19:56:55 by aortigos #+# #+# */
/* Updated: 2026/02/28 20:10:35 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "ScalarConverter/ScalarConverter.hpp"
int main(int argc, char **argv)
{
if (argc == 2)
ScalarConverter::convert(argv[1]);
else
std::cout << "Error: no arguments." << std::endl;
return (0);
}