aboutsummaryrefslogtreecommitdiff
path: root/ttwhy/lib.cppm
diff options
context:
space:
mode:
Diffstat (limited to 'ttwhy/lib.cppm')
-rw-r--r--ttwhy/lib.cppm11
1 files changed, 11 insertions, 0 deletions
diff --git a/ttwhy/lib.cppm b/ttwhy/lib.cppm
new file mode 100644
index 0000000..c7527ee
--- /dev/null
+++ b/ttwhy/lib.cppm
@@ -0,0 +1,11 @@
+export module ttwhy;
+
+namespace ttwhy
+{
+
+ export auto multiply(int lhs, int rhs) -> int
+ {
+ return lhs * rhs;
+ }
+
+} // namespace ttwhy