summaryrefslogtreecommitdiff
path: root/tests/apis/namespace/root/src/main.cpp
blob: 4cf7b5e624aa924f8ee919dd71963c1a525ae0b0 (plain)
1
2
3
4
5
6
7
8
9
#include "foo.h"
#include "bar.h"
#include <iostream>

int main(int argc, char** argv) {
    std::cout << "add(1, 2) = " << add(1, 2) << std::endl;
    std::cout << "sub(2, 1) = " << sub(2, 1) << std::endl;
    return 0;
}