Go Keyword import: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 8: | Line 8: | ||
=Overview= | =Overview= | ||
An import declaration states that the current package depends on the functionality of the imported package and wants access to its name space. Thus, the current package gains access to the exported identifiers exposed by the imported package. | |||
<pre> | <pre> |
Revision as of 05:55, 22 March 2016
External
Internal
Overview
An import declaration states that the current package depends on the functionality of the imported package and wants access to its name space. Thus, the current package gains access to the exported identifiers exposed by the imported package.
... import [package-name-alias] "package-path" ...
Example
... import "lib/math" ...
The package-name-alias is optional. If not specified, the package will be referred under the name