summaryrefslogtreecommitdiff
path: root/tests/actions/install/src/main.cpp
blob: d55d4d3424f3167049d8a2378492d55706d74251 (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;
}