Ruby - Classes and Objects
What will be the output of this Ruby code?
class Demo
def self.execute
new.instance_action
end
def instance_action
self.class.name
end
end
puts Demo.execute