Skip to content

Instantly share code, notes, and snippets.

@bachue
Last active December 10, 2015 12:08
Show Gist options
  • Save bachue/4431884 to your computer and use it in GitHub Desktop.
Save bachue/4431884 to your computer and use it in GitHub Desktop.
You can't include a class description in a method, it causes SyntaxError. But you can require a file with a class description in a method, please check https://gist.github.com/4431893
def f
class C
def g
'hello world'
end
end
puts C.new.g
end
f # => SyntaxError, class definition in method body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment