4 lines
80 B
Text
4 lines
80 B
Text
|
|
export module Calc;
|
||
|
|
import std;
|
||
|
|
|
||
|
|
export int Add(int a, int b) { return a + b; }
|