Some checks failed
CI / build-test-release (push) Failing after 7m15s
8 lines
216 B
C++
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; }
|