git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9882 626c5289-ae23-0410-ae9c-e8d60b6d4f22
22 lines
660 B
Ruby
22 lines
660 B
Ruby
require 'example'
|
|
|
|
a = 37
|
|
b = 42
|
|
|
|
# Now call our C function with a bunch of callbacks
|
|
|
|
puts "Trying some C callback functions"
|
|
puts " a = #{a}"
|
|
puts " b = #{b}"
|
|
puts " ADD(a,b) = #{Example.do_op(a,b,Example::ADD)}"
|
|
puts " SUB(a,b) = #{Example.do_op(a,b,Example::SUB)}"
|
|
puts " MUL(a,b) = #{Example.do_op(a,b,Example::MUL)}"
|
|
|
|
puts "Here is what the C callback function objects look like in Ruby"
|
|
puts " ADD = #{Example::ADD}"
|
|
puts " SUB = #{Example::SUB}"
|
|
puts " MUL = #{Example::MUL}"
|
|
|
|
puts "Call the functions directly..."
|
|
puts " add(a,b) = #{Example.add(a,b)}"
|
|
puts " sub(a,b) = #{Example.sub(a,b)}"
|