summaryrefslogtreecommitdiff
path: root/apps/examples/cxxtest
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/cxxtest')
-rw-r--r--apps/examples/cxxtest/cxxtest_main.cxx (renamed from apps/examples/cxxtest/cxxtext_main.cxx)12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/examples/cxxtest/cxxtext_main.cxx b/apps/examples/cxxtest/cxxtest_main.cxx
index 0d181d0e4..c0d4bfbd1 100644
--- a/apps/examples/cxxtest/cxxtext_main.cxx
+++ b/apps/examples/cxxtest/cxxtest_main.cxx
@@ -86,22 +86,22 @@ public:
static void test_iostream(void)
{
- int a;
- string s;
-
cout << "test iostream===========================" << endl;
cout << "Hello, this is only a test" << endl;
cout << "Print an int: " << 190 << endl;
- cout << "Print a char: " << 'd' << endl;
+ cout << "Print a char: " << 'd' << endl;
+
+#if 0
+ int a;
+ string s;
-/*
cout << "Please type in an int:" << endl;
cin >> a;
cout << "You type in: " << a << endl;
cout << "Please type in a string:" << endl;
cin >> s;
cout << "You type in: " << s << endl;
-*/
+#endif
}
//***************************************************************************