aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/world/program.lux')
-rw-r--r--stdlib/source/library/lux/world/program.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/world/program.lux b/stdlib/source/library/lux/world/program.lux
index 460acdc66..c846f1b7d 100644
--- a/stdlib/source/library/lux/world/program.lux
+++ b/stdlib/source/library/lux/world/program.lux
@@ -35,11 +35,11 @@
[file (#+ Path)]
[shell (#+ Exit)]])
-(exception: #export (unknown_environment_variable {name Text})
+(exception: .public (unknown_environment_variable {name Text})
(exception.report
["Name" (%.text name)]))
-(interface: #export (Program !)
+(interface: .public (Program !)
(: (-> Any (! (List Text)))
available_variables)
(: (-> Text (! (Try Text)))
@@ -51,7 +51,7 @@
(: (-> Exit (! Nothing))
exit))
-(def: #export (environment monad program)
+(def: .public (environment monad program)
(All [!] (-> (Monad !) (Program !) (! Environment)))
(do {! monad}
[variables (\ program available_variables [])
@@ -68,7 +68,7 @@
#.None)))
(dictionary.of_list text.hash)))))
-(`` (implementation: #export (async program)
+(`` (implementation: .public (async program)
(-> (Program IO) (Program Async))
(~~ (template [<method>]
@@ -88,7 +88,7 @@
[exit]
))))
-(def: #export (mock environment home directory)
+(def: .public (mock environment home directory)
(-> Environment Path Path (Program IO))
(let [@dead? (atom.atom false)]
(implementation
@@ -301,7 +301,7 @@
}
(as_is)))
-(implementation: #export default
+(implementation: .public default
(Program IO)
(def: (available_variables _)