Skip to content

Instantly share code, notes, and snippets.

@vipulnsward
Last active December 24, 2015 16:59
Show Gist options
  • Save vipulnsward/6832139 to your computer and use it in GitHub Desktop.
Save vipulnsward/6832139 to your computer and use it in GitHub Desktop.
class Product
def initialize(name, price, launched_on)
@name, @price, @launched_on = name, price, launched_on
end
def name
@name
end
def price
@price
end
def launched_on
@launched_on
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment