Last active
December 24, 2015 16:59
-
-
Save vipulnsward/6832139 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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