Files
cpp06/ex00/main.cpp
2026-03-01 00:28:26 +01:00

22 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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);
}