summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/submodules/src/math.math2.mpp
blob: f6c5381c39df0facd42b9ab0080546b93861f2f1 (plain)
1
2
3
4
5
6
7
export module math.math2;

export {
    int mul(int fir, int sec) {
        return fir * sec;
    }
}