summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/submodules/src/main.cpp
blob: 5ff18701f9f1cf8f1f79fb383064ecb2a0332aaf (plain)
1
2
3
4
5
6
7
8
9
10
#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;
}