2019-11-11 23:01:05 +01:00

10 lines
90 B
Plaintext

%module my_sub
%{
int sub(int a, int b) {
return a - b;
}
%}
int sub(int a, int b);