5 lines
125 B
Text
5 lines
125 B
Text
|
|
export module MyMath;
|
||
|
|
import std;
|
||
|
|
|
||
|
|
export int Square(int x) { return x * x; }
|
||
|
|
export int Cube(int x) { return x * x * x; }
|