aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-07-11 19:47:40 -0400
committerEduardo Julian2018-07-11 19:47:40 -0400
commitfdfd7036806fe62ffaf054b61fbf16bbfb002b7c (patch)
tree21a0b03e30df303e111cc8e353dec9865b704917 /stdlib/source/lux/language/compiler.lux
parente7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (diff)
- Improvements to import syntax [part 2].
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))