21 lines
196 B
Ruby
21 lines
196 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put description here
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
|
|
require 'profiletest'
|
|
|
|
a = Profiletest::A.new()
|
|
b = Profiletest::B.new()
|
|
|
|
for i in 0...1000000
|
|
a = b.fn(a)
|
|
end
|
|
|