From 9c09097156dc70315364d27e61daef19b2844139 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 17 Jun 2026 09:05:21 +0200 Subject: initial commit --- ttwhy/lib.cppm | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ttwhy/lib.cppm (limited to 'ttwhy/lib.cppm') 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 -- cgit v1.2.3