summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/c++/static/src/main.cpp
blob: 3834ee4d37e6b9bd5c897d0a16f1f836836df4c9 (plain)
1
2
3
4
5
6
7
#include "foo.h"
#include <iostream>

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