Exported names
This lesson discusses how to refer to exported names and how to use them after importing their package
We'll cover the following...
We'll cover the following...
How to Export
After importing a package, you can refer to the names it exports (meaning variables, methods, and functions that are available from outside of the package). In ...