Import Statement #4
Unanswered
Rajaniraiyn
asked this question in
Proposals
Replies: 4 comments
Python likefrom [module] import [function] as [customName] |
0 replies
JavaScript Likeimport [function] as [customName] from [module] |
0 replies
Rust Likeuse [module]:[function] as [customName] |
0 replies
Go Likeimport (
[customName1] [module1]
[customName2] [module2]
...
) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Importing a module or a package is in almost all languages.
Guide:
All reactions