my_sub.swg 90 B

123456789
  1. %module my_sub
  2. %{
  3. int sub(int a, int b) {
  4. return a - b;
  5. }
  6. %}
  7. int sub(int a, int b);