summaryrefslogtreecommitdiff
path: root/examples/hello_cxx/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_cxx/main.cc')
-rw-r--r--examples/hello_cxx/main.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/hello_cxx/main.cc b/examples/hello_cxx/main.cc
index 4b93a98..1d99736 100644
--- a/examples/hello_cxx/main.cc
+++ b/examples/hello_cxx/main.cc
@@ -1,7 +1,13 @@
#include "hello_msg.h"
+#include "five.h"
+#include "seven.h"
+
+#include <iostream>
int main (int argc, char **argv)
{
hello_msg ();
+ std::cout << "Five: " << five () << '\n';
+ std::cout << "Seven: " << seven () << '\n';
return 0;
}