class Test def show_yourself() puts "ノンケ" end def func(value) if value % 2 == 0 def show_yourself() puts "ウホッ" end else def show_yourself() puts "オネエさま〜" end end end end
obj = Test.new obj.show_yourself() 5.times do obj.func(rand(100)) obj.show_yourself() end