From d666669a2f36e8e278f93575b85e49c2e3f78a31 Mon Sep 17 00:00:00 2001 From: Elijah Opoku-Nyarko Date: Sat, 23 Apr 2022 21:51:19 -0400 Subject: [PATCH] called minSpan function in the main function to see output --- project5.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/project5.cc b/project5.cc index d11ac51..5900e0e 100644 --- a/project5.cc +++ b/project5.cc @@ -54,6 +54,13 @@ int main(int argc, char *argv[]) { std::cout << "------------------------------------------------" << std::endl; std::cout << std::endl; + theProvince.minSpan(std::cout); + + std::cout << std::endl; + std::cout << "------------------------------------------------" << std::endl; + std::cout << "------------------------------------------------" << std::endl; + std::cout << std::endl; + } }