mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-13 18:49:38 -06:00
10 lines
90 B
OpenEdge ABL
10 lines
90 B
OpenEdge ABL
%module my_add
|
|
|
|
%{
|
|
int add(int a, int b) {
|
|
return a + b;
|
|
}
|
|
%}
|
|
|
|
int add(int a, int b);
|