Skip to content

Instantly share code, notes, and snippets.

@Naomi-Dennis
Last active January 16, 2020 20:56
Show Gist options
  • Save Naomi-Dennis/b1d2d421d240c5928bbc216105c8daa7 to your computer and use it in GitHub Desktop.
Save Naomi-Dennis/b1d2d421d240c5928bbc216105c8daa7 to your computer and use it in GitHub Desktop.
class ShopItem
attr_reader :value, :name
def initialize(value, name)
@value = value
@name = name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment