swig/Examples/scilab/struct/runme.sci
2009-07-27 02:57:09 +00:00

14 lines
143 B
Scilab

// builder the *.so
exec builder.sce
//loader the *.so
exec loader.sce
//create a struct
a=new_Bar();
Bar_x_set(a,100);
Bar_x_get(a)
exit