blob: 4fcea98b2447e70d804cca7ba6c8f73263e5db19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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
|