Skip to content

Instantly share code, notes, and snippets.

@nikita8
Created November 13, 2018 05:08
Show Gist options
  • Save nikita8/e784c1b597f760a4c1b8be55c57a7306 to your computer and use it in GitHub Desktop.
Save nikita8/e784c1b597f760a4c1b8be55c57a7306 to your computer and use it in GitHub Desktop.
OOP in ruby
# Ruby
class Festival
def initialize(name, description)
@name = name
@description = description
end
def is_dashain?
if @name == "Dashain"
@description = "Let's fly kites."
true
else
false
end
end
def to_s
"#{@name}: #{@description}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment