aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/extension/bundle.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/language/compiler/extension/bundle.lux17
1 files changed, 10 insertions, 7 deletions
diff --git a/stdlib/source/lux/language/compiler/extension/bundle.lux b/stdlib/source/lux/language/compiler/extension/bundle.lux
index 57bae70ed..315d05523 100644
--- a/stdlib/source/lux/language/compiler/extension/bundle.lux
+++ b/stdlib/source/lux/language/compiler/extension/bundle.lux
@@ -1,11 +1,14 @@
(.module:
- lux
- (lux (control [monad (#+ do)]
- ["ex" exception (#+ exception:)])
- (data [text]
- text/format
- (collection [list ("list/" Functor<List>)]
- ["dict" dictionary (#+ Dictionary)])))
+ [lux #*
+ [control
+ [monad (#+ do)]
+ ["ex" exception (#+ exception:)]]
+ [data
+ ["." text
+ format]
+ [collection
+ [list ("list/" Functor<List>)]
+ ["dict" dictionary (#+ Dictionary)]]]]
[//])
(exception: #export (incorrect-arity {name Text} {arity Nat} {args Nat})