create instance from classes that is in module
module Tools
class Hammer
end
end
h = Tools::Hammer.new
this technique can help it two classes have a similar name but are NOT the same class!
for example:
Tools::Hammer.new
and
Piano::Hammer.new
Tool is one case and Piano is another
Top comments (0)