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