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

export int add(int fir, int sec) {
    return fir + sec;
}