Ruby - Inheritance
Find the bug in this code:
class Fruit; end class Apple < Fruit; end obj = Apple.new if obj.kind_of? Fruit puts "Yes" else puts "No" end
