Skip to content

Instantly share code, notes, and snippets.

@diegomelo182
Last active September 28, 2021 04:12
Show Gist options
  • Save diegomelo182/eb9e5ed2b75240df5f580fe41d01d40a to your computer and use it in GitHub Desktop.
Save diegomelo182/eb9e5ed2b75240df5f580fe41d01d40a to your computer and use it in GitHub Desktop.
attr_accessor car_class.rb
class Car
attr_accessor :name
def initialize(name)
@name = name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment