| 12345678910111213141516171819 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* main.cpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2026/01/05 12:47:49 by bchanot #+# #+# */
- /* Updated: 2026/01/05 12:54:24 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "ScalarConverter.hpp"
- int main(int ac, char **av) {
- if (ac > 1) {
- ScalarConverter::convert(av[1]);
- }
- }
|