aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk6
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk6')
-rw-r--r--ee1301/wk6/hw6_directory/strap012_HW6B.cpp2
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;
}
}