summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module/modules/binary/bar/src/add.cpp
blob: 87ef97e6cd2c736d46b68a02c291ffef3b5ffb44 (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("%s\n", a + b);
    return 0;
}