Skip to content

Instantly share code, notes, and snippets.

@Shinya131
Created October 23, 2012 01:00
Show Gist options
  • Save Shinya131/3936013 to your computer and use it in GitHub Desktop.
Save Shinya131/3936013 to your computer and use it in GitHub Desktop.
class ItemWithQuantity
attr_reader :item, :quantity
def initialize(item, quantity)
@item = item
@quantity = quantity
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment