diff options
Diffstat (limited to 'test/hello_libcxx.cpp')
-rw-r--r-- | test/hello_libcxx.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/hello_libcxx.cpp b/test/hello_libcxx.cpp index 445c5513b..25abee0e2 100644 --- a/test/hello_libcxx.cpp +++ b/test/hello_libcxx.cpp @@ -1,8 +1,6 @@ #include <iostream> -int main() -{ +int main() { std::cout << "hello, world!" << std::endl; return 0; } - |