Ruby - Modules and Mixins
Find the error in this code:
module Tools
class Hammer
def hit
puts 'Bang'
end
end
end
puts Tools.Hammer.new.hit