diff options
Diffstat (limited to 'tests/projects/c++/console/src/main.cpp')
| -rw-r--r-- | tests/projects/c++/console/src/main.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/projects/c++/console/src/main.cpp b/tests/projects/c++/console/src/main.cpp index db2361659..7c775d288 100644 --- a/tests/projects/c++/console/src/main.cpp +++ b/tests/projects/c++/console/src/main.cpp @@ -1,9 +1,6 @@ #include <iostream> -using namespace std; - -int main(int argc, char** argv) -{ - cout << "hello world!" << endl; +int main(int argc, char** argv) { + std::cout << "hello world!" << std::endl; return 0; } |
