aboutsummaryrefslogtreecommitdiff
path: root/ttwhy/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ttwhy/main.cpp')
-rw-r--r--ttwhy/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/ttwhy/main.cpp b/ttwhy/main.cpp
new file mode 100644
index 0000000..fdaba88
--- /dev/null
+++ b/ttwhy/main.cpp
@@ -0,0 +1,14 @@
+#include <asio/io_context.hpp>
+
+#include <print>
+
+import ttwhy;
+
+auto main() -> int
+{
+ auto context = asio::io_context{};
+
+ std::println("The answer is {}", ttwhy::multiply(6, 7));
+
+ context.run();
+}