diff options
-rw-r--r-- | ee1301/wk6/hw6_directory/strap012_HW6B.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ee1301/wk6/hw6_directory/strap012_HW6B.cpp b/ee1301/wk6/hw6_directory/strap012_HW6B.cpp index 5a367ff..f2f0fd8 100644 --- a/ee1301/wk6/hw6_directory/strap012_HW6B.cpp +++ b/ee1301/wk6/hw6_directory/strap012_HW6B.cpp @@ -23,7 +23,7 @@ int ff(int x) { return x*ff(x-2); } } else { - std::cout << "Returning from ff(1) = 1\n"; + //std::cout << "Returning from ff(1) = 1\n"; return 1; } } |