summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module/hello/modules/binary/bar/src/add.cpp
blob: e19d07e121b8c9000727eb033b09e3a79eacb79a (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char** argv) {
    int a = atoi(argv[1]);
    int b = atoi(argv[2]);
    printf("%d", a + b);
    return 0;
}