Ruby - Modules and Mixins
Identify the problem in this code snippet:
module Kitchen
def self.cook
'Cooking'
end
class Oven
end
end
puts Kitchen::Oven.cook