summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/partitions/src/main.cpp
blob: 898d280585b9ade724543effb251cdb7fc2ce8ad (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;
}