summaryrefslogtreecommitdiff
path: root/tests/projects/c++/static_library/src/main.cpp
blob: 41e4944810c31e634eb0825018c47907cc1b2168 (plain)
1
2
3
4
5
6
7
8
9
#include "foo.h"
#include <iostream>

using namespace std;

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