Skip to content

Instantly share code, notes, and snippets.

@carlzulauf
Last active December 27, 2015 23:19
Show Gist options
  • Save carlzulauf/7405510 to your computer and use it in GitHub Desktop.
Save carlzulauf/7405510 to your computer and use it in GitHub Desktop.
MyClass = Class.new do
def foo
"bar"
end
end
MyClass.new.foo
#=> "bar"
class MyClass2
def foo
"bar"
end
end
MyClass2.new.foo
#=> "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment