/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/01/13 17:54:18 by bchanot #+# #+# */ /* Updated: 2026/01/14 16:18:52 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "Span.hpp" int main(void) { Span sp = Span(500); sp.fullFillSpan(); std::cout << sp.shortestSpan() << std::endl; std::cout << sp.longestSpan() << std::endl; return 0; }