Skip to content

Instantly share code, notes, and snippets.

@keizo042
Created March 23, 2017 05:18
Show Gist options
  • Save keizo042/fcac043af0723491ba1738040fca5a58 to your computer and use it in GitHub Desktop.
Save keizo042/fcac043af0723491ba1738040fca5a58 to your computer and use it in GitHub Desktop.
class Greeding
@@hello =nil
def self.hello=(word)
@@hello = word
end
def hello
@@hello
end
end
Greeding.hello="hello world"
puts Greeding.new.hello # expected "hello world" but acutual ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment