Summary of Swift practice introduction. I will also include excerpts of parts that I do not understand, and will update as needed if I can solve it. In addition to the ones listed here, there are many parts that say "I don't understand ...", I'm skipping by saying that I don't need it now.
Chapter 11 Module A program that can be used in another program Comprehension: About 50%
The point is parts. The component alone works, or it can be used in combination with other modules (components). You can see the level setting that can access the module and the contents of the module at a glance There is also a module header and so on.
11-2 Describe dependencies in a Package type argument called Package (). let package = Package(name : “Example”, dependencies : [~])
Recommended Posts