/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/14 18:52:19 by adjoly #+# #+# */ /* Updated: 2025/04/14 18:52:20 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "Array.hpp" #include int main() { Array str(7); str[0] = 10; str[1] = 9; str[2] = 8; str[3] = 7; str[4] = 6; str[5] = 5; str[6] = 4; std::cout << str << std::endl; }