Skip to content

Instantly share code, notes, and snippets.

@wethu
Created May 8, 2017 01:12
Show Gist options
  • Save wethu/a44249492b965b5d08caa8553b6d1690 to your computer and use it in GitHub Desktop.
Save wethu/a44249492b965b5d08caa8553b6d1690 to your computer and use it in GitHub Desktop.
class Foo
def initialize(bar)
@bar = bar
end
def bar
@bar
end
end
def Foo(bar)
Foo.new(bar)
end
Foo("this").bar
# => "this"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment