summaryrefslogtreecommitdiff
path: root/tests/projects/c++/package_linkgroups/src/main.cc
blob: 3115830fee2b37c706f224b120962ddd97ba3953 (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>
#include "mul.h"


int main(int argc, char** argv) {
    int s = mul(3, 4);
    std::cout << "hello world! " << s << std::endl;
    return 0;
}