swig/Examples/guile/simple/example.i
William S Fulton de23343739 Standardise Guile simple example
Changes so that it works the same as other language modules
2019-02-09 14:44:33 +00:00

12 lines
186 B
OpenEdge ABL

/* File : example.i */
%module Example
%{
/* Put headers and other declarations here */
%}
%inline %{
extern int gcd(int x, int y);
extern double Foo;
%}
%include guile/guilemain.i