diff options
Diffstat (limited to 'stdlib/source/lux/tool/compiler/meta/io.lux')
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/io.lux | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/stdlib/source/lux/tool/compiler/meta/io.lux b/stdlib/source/lux/tool/compiler/meta/io.lux index 11faee222..41481d0fa 100644 --- a/stdlib/source/lux/tool/compiler/meta/io.lux +++ b/stdlib/source/lux/tool/compiler/meta/io.lux @@ -5,12 +5,15 @@ [world [file (#+ Path System)]]]) -(type: #export Context Path) +(type: #export Context + Path) -(type: #export Code Text) +(type: #export Code + Text) (def: #export (sanitize system) (All [m] (-> (System m) Text Text)) (text.replace-all "/" (:: system separator))) -(def: #export lux-context "lux") +(def: #export lux-context + "lux") |