xxxxxxxxxx
# Namespace is used to name your "library" and differ it from others'
#Example:
#YourFile
Module MyLibrary
Class sameClass
def same_named_function
print("function from my library")
end
end
end
#AnotherFile
Module OtherLibrary
Class sameClass
def same_named_function
print("function from others' library")
end
end
end
#When calling `same_named_function`
MyLibrary::sameClass.same_named_function
>> function from my library