aboutsummaryrefslogtreecommitdiff
path: root/docs/BASIC.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/BASIC.md')
-rw-r--r--docs/BASIC.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/BASIC.md b/docs/BASIC.md
index e266b29..9bba09f 100644
--- a/docs/BASIC.md
+++ b/docs/BASIC.md
@@ -85,7 +85,7 @@ Exhaustive structural pattern matching is available and particularly useful for
```puck
```
-I am undecided on how the import/module system will work and particularly how it will play into the type system. UFCS *will* be supported. todo
+Code is segmented into modules. A module can be imported into another module by use of the `import` keyword. Files form implicit modules, and explicit modules can be declared with the `module` keyword. Modules are declared in-line with implementations, and other modules can be re-exported with the `export` keyword. All identifiers are private by default within the module system and can explicitly be marked `pub`.
More details may be found in the [modules document](MODULES.md).