aboutsummaryrefslogtreecommitdiff
path: root/cpp08/ex01/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp08/ex01/main.cpp')
-rw-r--r--cpp08/ex01/main.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp08/ex01/main.cpp b/cpp08/ex01/main.cpp
new file mode 100644
index 0000000..c239eaf
--- /dev/null
+++ b/cpp08/ex01/main.cpp
@@ -0,0 +1,30 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* main.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/15 06:50:51 by charles #+# #+# */
+/* Updated: 2020/04/15 07:19:40 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include <iostream>
+#include "span.hpp"
+
+int main()
+{
+ Span sp = Span(5);
+
+ sp.addNumber(5);
+ sp.addNumber(3);
+ sp.addNumber(17);
+ sp.addNumber(9);
+ sp.addNumber(11);
+
+ std::cout << sp.shortestSpan() << std::endl;
+ std::cout << sp.longestSpan() << std::endl;
+
+ return 0;
+}