I'm new to Julia and just getting my heard around things. I was wondering if namespaces aren't supported then what happens if I use two modules that define the same name for a composite type? How do I specify which of the two I am referring to?
Module1 defines:
type Widget
part1
part2
end
Module2 defines:
type Widget
blob1
blob2
end
and in some code that imports / uses both Module1 and Module2
a::Widget
a.blob1 or a.part1 ?
