Can I create Ruby classes within functions bodies ? I seem to be getting error which tells me its not allowed but I think it should be as classes are too objects here.
class A def method class B end end end
This fails with error 'class definition inside method body. If we cant, why cant we create classes inside methods ?