export module MyMath; import std; export int Square(int x) { return x * x; } export int Cube(int x) { return x * x * x; }