aboutsummaryrefslogtreecommitdiff
path: root/ttwhy/lib.cppm
blob: c7527ee1a6faf5c13ca2ddc34e77dcc493136c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
export module ttwhy;

namespace ttwhy
{

  export auto multiply(int lhs, int rhs) -> int
  {
    return lhs * rhs;
  }

}  // namespace ttwhy