Crafter.Build/examples/library/mylib/MyMath.cppm
Jorijn van der Graaf 8892154b28
Some checks failed
CI / build-test-release (push) Failing after 7m15s
linting
2026-07-23 01:24:42 +02:00

8 lines
216 B
C++

// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
export module MyMath;
import std;
export int Square(int x) { return x * x; }
export int Cube(int x) { return x * x * x; }