Skip to content

Instantly share code, notes, and snippets.

@Rinkana
Created April 2, 2016 07:13
Show Gist options
  • Save Rinkana/6e2647f5018b13f883e21ee0b7aba46e to your computer and use it in GitHub Desktop.
Save Rinkana/6e2647f5018b13f883e21ee0b7aba46e to your computer and use it in GitHub Desktop.
def find_car(make, model)
@cars.each do |car|
if car.matches?(make, model)
car
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment