aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/module.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/language/module.lux')
-rw-r--r--stdlib/source/lux/language/module.lux27
1 files changed, 15 insertions, 12 deletions
diff --git a/stdlib/source/lux/language/module.lux b/stdlib/source/lux/language/module.lux
index 051e7cd12..75a1ab302 100644
--- a/stdlib/source/lux/language/module.lux
+++ b/stdlib/source/lux/language/module.lux
@@ -1,16 +1,19 @@
(.module:
- lux
- (lux (control [monad (#+ do)]
- ["ex" exception (#+ exception:)]
- pipe)
- (data [text ("text/" Equivalence<Text>)]
- text/format
- ["e" error]
- (collection [list ("list/" Fold<List> Functor<List>)]
- (dictionary [plist])))
- [macro])
- [//compiler]
- (//compiler [analysis]))
+ [lux #*
+ [control
+ [monad (#+ do)]
+ ["ex" exception (#+ exception:)]
+ pipe]
+ [data
+ [text ("text/" Equivalence<Text>)
+ format]
+ ["e" error]
+ [collection
+ [list ("list/" Fold<List> Functor<List>)]
+ [dictionary [plist]]]]
+ [macro]]
+ ["." //compiler
+ [analysis]])
(type: #export Tag Text)