Skip to content

Instantly share code, notes, and snippets.

@sugamasao
Created January 9, 2020 00:35
Show Gist options
  • Save sugamasao/2535e25c6ad4ccfd8575913696a2d780 to your computer and use it in GitHub Desktop.
Save sugamasao/2535e25c6ad4ccfd8575913696a2d780 to your computer and use it in GitHub Desktop.
attr_reader
class Foo
attr_reader :bar
def initialize(bar)
@bar = bar
end
def hoge
puts "bar is #{bar}"
end
end
foo = Foo.new('hello')
foo.hoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment