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

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