git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
513 B
Mathematica
21 lines
513 B
Mathematica
# file: runme.m
|
|
|
|
example
|
|
|
|
a = 37
|
|
b = 42
|
|
|
|
# Now call our C function with a bunch of callbacks
|
|
|
|
printf("Trying some C callback functions\n");
|
|
printf(" a = %i\n", a);
|
|
printf(" b = %i\n", b);
|
|
printf(" ADD(a,b) = %i\n", example.do_op(a,b,example.ADD));
|
|
printf(" SUB(a,b) = %i\n", example.do_op(a,b,example.SUB));
|
|
printf(" MUL(a,b) = %i\n", example.do_op(a,b,example.MUL));
|
|
|
|
printf("Here is what the C callback function objects look like in Octave\n");
|
|
example.ADD
|
|
example.SUB
|
|
example.MUL
|
|
|