aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.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/translation/scheme/loop.jvm.lux
parente7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (diff)
- Improvements to import syntax [part 2].
Diffstat (limited to 'stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux')
-rw-r--r--stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux24
1 files changed, 14 insertions, 10 deletions
diff --git a/stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux b/stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux
index 4fb90a51e..227a2eda9 100644
--- a/stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux
+++ b/stdlib/source/lux/language/compiler/translation/scheme/loop.jvm.lux
@@ -1,14 +1,18 @@
(.module:
- [lux (#- Scope)]
- (lux (control [monad (#+ do)])
- (data [product]
- [text]
- text/format
- (collection [list ("list/" Functor<List>)]))
- [macro])
- (///// (host ["_" scheme (#+ Computation Var)])
- [compiler]
- (compiler [synthesis (#+ Scope Synthesis)]))
+ [lux (#- Scope)
+ [control
+ [monad (#+ do)]]
+ [data
+ [product]
+ ["." text
+ format]
+ [collection
+ [list ("list/" Functor<List>)]]]
+ [macro]]
+ [/////
+ [host ["_" scheme (#+ Computation Var)]]
+ ["." compiler
+ [synthesis (#+ Scope Synthesis)]]]
[///]
[//runtime (#+ Operation Translator)]
[//reference])