You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linking to external packages in the REPL requires a few additional steps, but it's possible if we make use of [SPM](https://swift.org/package-manager/) and a dynamic library.
51
+
Importing third-party packages in the REPL requires a few additional steps, but it's possible if we make use of [SPM](https://swift.org/package-manager/) and a dynamic library.
52
52
53
53
#### Package Manager Tutorial:
54
54
@@ -70,7 +70,7 @@ cd TFExample
70
70
swift package init --type library
71
71
```
72
72
73
-
3: Add some dependencies to `Package.swift`, and make the library dynamic so we can import it and it's dependencies. Here's an example:
73
+
3: Add some third-party dependencies to `Package.swift`, and make the library dynamic so we can import it and it's dependencies. Here's an example:
0 commit comments