Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/guile/matrix/example.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

18 lines
259 B
OpenEdge ABL

/*** Matrix and vector example ***/
%module Matrix
%{
#include <math.h>
%}
%include guilemain.i
%include matrix.i
%include vector.i
// Include the math library so we can get some random numbers and
// other stuff
%include math.i
extern double drand48();