summaryrefslogtreecommitdiff
path: root/tests/projects/other/native_module/hello/modules/binary/bar/src/sub.cpp
blob: 980289d1a5114a006a3441b25bd3755ca44e2649 (plain)
1
2
3
4
5
6
7
8
9
10
#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;
}