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
Copy file name to clipboardExpand all lines: getting-started/alias-require-and-import.markdown
+1-1
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ Note that like the `alias` directive, `require` is also lexically scoped. We wil
90
90
91
91
## import
92
92
93
-
We use `import` whenever we want to access functions or macros from other modules without using the fully-qualified name. Note we can only import public functions, as private functions are never accessible externally.`import`ing a module automatically `require`s it.
93
+
We use `import` whenever we want to access functions or macros from other modules without using the fully-qualified name. Note we can only import public functions, as private functions are never accessible externally.
94
94
95
95
For example, if we want to use the `duplicate/2` function from the `List` module several times, we can import it:
0 commit comments