5 lines
75 B
Text
5 lines
75 B
Text
|
|
export module MathLib;
|
||
|
|
|
||
|
|
export int Add(int a, int b) {
|
||
|
|
return a + b;
|
||
|
|
}
|