Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created December 4, 2015 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/b9d50d3971f18eb59fca to your computer and use it in GitHub Desktop.
Save chuck0523/b9d50d3971f18eb59fca to your computer and use it in GitHub Desktop.
class Oden
def initialize(name, price)
@name = name
@price = price
end
def name
return @name
end
def price
return @price
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment