swig/Examples/ruby/funcptr2/runme.rb
Dave Beazley 12a43edc2d The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2002-11-30 22:01:28 +00:00

18 lines
537 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}"