diff options
Diffstat (limited to 'stdlib/source/library/lux/tool/interpreter.lux')
-rw-r--r-- | stdlib/source/library/lux/tool/interpreter.lux | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/library/lux/tool/interpreter.lux b/stdlib/source/library/lux/tool/interpreter.lux index eb4ac9de7..3a91862f8 100644 --- a/stdlib/source/library/lux/tool/interpreter.lux +++ b/stdlib/source/library/lux/tool/interpreter.lux @@ -1,14 +1,14 @@ (.module: [library - [lux #* + [lux "*" [control - [monad (#+ Monad do)] - ["." try (#+ Try)] - ["ex" exception (#+ exception:)]] + [monad {"+" [Monad do]}] + ["." try {"+" [Try]}] + ["ex" exception {"+" [exception:]}]] [data ["." text ("#\." equivalence) - ["%" format (#+ format)]]] - [type (#+ :sharing) + ["%" format {"+" [format]}]]] + [type {"+" [:sharing]} ["." check]] [compiler ["." phase @@ -16,17 +16,17 @@ ["." module] ["." type]] ["." generation] - ["." directive (#+ State+ Operation) + ["." directive {"+" [State+ Operation]} ["." total]] ["." extension]] ["." default ["." syntax] - ["." platform (#+ Platform)] + ["." platform {"+" [Platform]}] ["." init]] - ["." cli (#+ Configuration)]] + ["." cli {"+" [Configuration]}]] [world - ["." file (#+ File)] - ["." console (#+ Console)]]]] + ["." file {"+" [File]}] + ["." console {"+" [Console]}]]]] ["." /type]) (exception: .public (error {message Text}) |