summaryrefslogtreecommitdiffstats
path: root/cpp/sca/modules/eval/driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/sca/modules/eval/driver.hpp')
-rw-r--r--cpp/sca/modules/eval/driver.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/sca/modules/eval/driver.hpp b/cpp/sca/modules/eval/driver.hpp
index c1b2e1e96f..582f4f1b08 100644
--- a/cpp/sca/modules/eval/driver.hpp
+++ b/cpp/sca/modules/eval/driver.hpp
@@ -33,16 +33,16 @@
namespace tuscany
{
-const std::string evalOutputPrompt(";;; Eval value: ");
-const std::string evalInputPrompt(";;; Eval input: ");
+const std::string evalOutputPrompt("; ");
+const std::string evalInputPrompt("=> ");
const bool promptForInput(std::ostream& out, const std::string str) {
- out << "\n\n" << str << "\n";
+ out << "\n\n" << str;
return true;
}
const bool announceOutput(std::ostream& out, const std::string str) {
- out << "\n" << str << "\n";
+ out << "\n" << str;
return true;
}