summaryrefslogtreecommitdiff
path: root/tests/apis/namespace/toolchain/src/main.cpp
blob: b2c84c4bd683dd048ac5f38f82459771188295e3 (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;
}