#songsincode
class Bitch
def love(person)
puts person
end
end
bitches = [Bitch.new, Bitch.new, Bitch.new]
me = Object.new
me.instance_eval {def rock; 'the projects'; end}
bitches.each do |bitch|
bitch.love(me) if me.respond_to? :rock
end