Import Statement #4
Unanswered
Rajaniraiyn
asked this question in
Proposals
Replies: 4 comments
-
Python likefrom [module] import [function] as [customName] |
Beta Was this translation helpful? Give feedback.
0 replies
-
JavaScript Likeimport [function] as [customName] from [module] |
Beta Was this translation helpful? Give feedback.
0 replies
-
Rust Likeuse [module]:[function] as [customName] |
Beta Was this translation helpful? Give feedback.
0 replies
-
Go Likeimport (
[customName1] [module1]
[customName2] [module2]
...
) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Importing a module or a package is in almost all languages.
Guide:
Beta Was this translation helpful? Give feedback.
All reactions