Hacker News new | ask | show | jobs
by kainosnoema 3062 days ago
Most Swift code is divided nicely up into modules, which are compiled together and have their own namespace. https://developer.apple.com/library/content/documentation/Sw...
1 comments

For some reasons most of the swift code I've seen doesn't use any namespace/prefix when it calls various functions from different "modules". It's used just like C "include"
You only have to qualify what module something is from if it would otherwise be ambiguous.