We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from std/[foo1,foo2] import nil
from "." / [foo1,foo2] import bar1, bar2, bar3
import this/foo
this
from [xyz, abc] import nil
import ./[foo1,foo2]
import ./bar/[foo1,foo2]
import foo
import ./foo
--path:prefix:path
import prefix/suffix
The text was updated successfully, but these errors were encountered:
No branches or pull requests
links
from std/[foo1,foo2] import nil
;from "." / [foo1,foo2] import bar1, bar2, bar3
· Issue #76 · nim-lang/RFCsimport this/foo
which resolvesthis
to · Issue #267 · nim-lang/RFCsfrom [xyz, abc] import nil
· Issue #12003 · nim-lang/Nimimport ./[foo1,foo2]
gives error;import ./bar/[foo1,foo2]
works · Issue #8792 · nim-lang/Nimimport foo
forimport ./foo
when foo is relative to importing file and not in --path · Issue #8608 · nim-lang/Nim--path:prefix:path
to resolveimport prefix/suffix
· Issue #291 · nim-lang/RFCsThe text was updated successfully, but these errors were encountered: