summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/submodules/src/main.cpp
blob: 2ba0a32125bb659c6208510b3d281917b3de04cd (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>
import math;

int main() {
    std::cout << std::endl;

    std::cout << "add(3, 4): " << add(3, 4) << std::endl;
    std::cout << "mul(3, 4): " << mul(3, 4) << std::endl;
}