From ceae7752958e1f4652efef5674c55a7e268933a2 Mon Sep 17 00:00:00 2001 From: Angel Ortigosa Perez Date: Wed, 8 Apr 2026 20:35:27 +0200 Subject: [PATCH] Added const var to tests --- ex01/main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ex01/main.cpp b/ex01/main.cpp index 9006ffe..c3e4c05 100644 --- a/ex01/main.cpp +++ b/ex01/main.cpp @@ -6,7 +6,7 @@ /* By: aortigos ); @@ -46,4 +47,8 @@ int main() std::cout << "\nAfter: "; iter(numbers, 5, print); std::cout << std::endl; + + std::cout << "Const array: "; + iter(constants, 3, print); + std::cout << std::endl; } \ No newline at end of file