| 12345678910111213141516171819202122 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* main.cpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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;
- }
|