Some checks failed
CI / build-test-release (push) Failing after 7m15s
11 lines
241 B
C++
11 lines
241 B
C++
// SPDX-License-Identifier: MIT
|
|
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
import std;
|
|
import MyMath;
|
|
|
|
int main() {
|
|
std::println("Square(5) = {}", Square(5));
|
|
std::println("Cube(3) = {}", Cube(3));
|
|
return 0;
|
|
}
|