aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/language/compiler.lux')
-rw-r--r--stdlib/source/lux/language/compiler.lux22
1 files changed, 12 insertions, 10 deletions
diff --git a/stdlib/source/lux/language/compiler.lux b/stdlib/source/lux/language/compiler.lux
index db2010e7f..d8b622c31 100644
--- a/stdlib/source/lux/language/compiler.lux
+++ b/stdlib/source/lux/language/compiler.lux
@@ -1,14 +1,16 @@
(.module:
- lux
- (lux (control [state]
- ["ex" exception (#+ Exception exception:)]
- [monad (#+ do)])
- (data [product]
- [error (#+ Error)]
- [text]
- text/format)
- [function]
- (macro ["s" syntax (#+ syntax:)])))
+ [lux #*
+ [control
+ [state]
+ ["ex" exception (#+ Exception exception:)]
+ [monad (#+ do)]]
+ [data
+ [product]
+ [error (#+ Error)]
+ ["." text
+ format]]
+ [function]
+ [macro ["s" syntax (#+ syntax:)]]])
(type: #export (Operation s o)
(state.State' Error s o))