Ruby - Classes and Objects
Find the error in this Ruby class:
class Animal
def initialize(name)
name = name
end
def get_name
@name
end
end
pet = Animal.new("Buddy")
puts pet.get_name