summaryrefslogtreecommitdiffhomepage
path: root/examples/example_01/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_01/example.cc')
-rw-r--r--examples/example_01/example.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/example_01/example.cc b/examples/example_01/example.cc
index aa2d8b0..ae47ce8 100644
--- a/examples/example_01/example.cc
+++ b/examples/example_01/example.cc
@@ -1,8 +1,7 @@
-#include <string>
#include <iostream>
+#include <string>
-int main(int argc, char** argv)
-{
- std::cout << "hello, world!\n";
- return 0;
+int main(int argc, char** argv) {
+ std::cout << "hello, world!\n";
+ return 0;
}