Skip to content

Instantly share code, notes, and snippets.

@eam
Created December 9, 2018 05:38
Show Gist options
  • Save eam/bc1821aac128d8cb9d57538a332183c8 to your computer and use it in GitHub Desktop.
Save eam/bc1821aac128d8cb9d57538a332183c8 to your computer and use it in GitHub Desktop.
class Foo
attr_accessor :bar
def initialize
@bar = 99
end
def baz
puts bar
bar += 1 end
end
a = Foo.new
puts a.bar
puts a.baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment