aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/init.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/language/compiler/init.lux')
-rw-r--r--stdlib/source/lux/language/compiler/init.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/lux/language/compiler/init.lux b/stdlib/source/lux/language/compiler/init.lux
index 92a066b7e..648211ca7 100644
--- a/stdlib/source/lux/language/compiler/init.lux
+++ b/stdlib/source/lux/language/compiler/init.lux
@@ -1,7 +1,7 @@
(.module:
lux
- [///]
- [///host])
+ ["." ///
+ ["." host]])
(def: #export (cursor file)
(-> Text Cursor)
@@ -23,15 +23,15 @@
(`` (def: #export info
Info
- {#.target (for {(~~ (static ///host.common-lisp)) ///host.common-lisp
- (~~ (static ///host.js)) ///host.js
- (~~ (static ///host.jvm)) ///host.jvm
- (~~ (static ///host.lua)) ///host.lua
- (~~ (static ///host.php)) ///host.php
- (~~ (static ///host.python)) ///host.python
- (~~ (static ///host.r)) ///host.r
- (~~ (static ///host.ruby)) ///host.ruby
- (~~ (static ///host.scheme)) ///host.scheme})
+ {#.target (for {(~~ (static host.common-lisp)) host.common-lisp
+ (~~ (static host.js)) host.js
+ (~~ (static host.jvm)) host.jvm
+ (~~ (static host.lua)) host.lua
+ (~~ (static host.php)) host.php
+ (~~ (static host.python)) host.python
+ (~~ (static host.r)) host.r
+ (~~ (static host.ruby)) host.ruby
+ (~~ (static host.scheme)) host.scheme})
#.version ///.version
#.mode #.Build}))