We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
By default, the import search path contains two entries:
import
adept
When a file is imported, the compiler will look in each location, going from top to bottom, to try to find it.
The first file that's found is used.
The above only applies to imports that aren't import component or #import <component>, since those only look in the standard library folder.
import component
#import <component>
Paths can be added to the end of the list, by using either pragma search_path, or -I<PATH>
pragma search_path
-I<PATH>
Table of Contents