diff options
author | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
commit | b96beb587c11fcfbce86ce2d62351600cf6cad1b (patch) | |
tree | c9a558ab1391ac97cb11e8777ea78299f1ab5555 /stdlib/source/library/lux/world/shell.lux | |
parent | 104130efba46a875eba566384578f8aa8593ad37 (diff) |
More traditional names for unquoting macros.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/library/lux/world/shell.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/world/shell.lux b/stdlib/source/library/lux/world/shell.lux index f9d7a6fd6..c218f3bf5 100644 --- a/stdlib/source/library/lux/world/shell.lux +++ b/stdlib/source/library/lux/world/shell.lux @@ -61,7 +61,7 @@ (def (async_process process) (-> (Process IO) (Process Async)) (`` (implementation - (~~ (with_template [<method>] + (,, (with_template [<method>] [(def <method> (|>> (at process <method>) async.future))] @@ -245,7 +245,7 @@ java/io/BufferedReader::new)]] (in (is (Process IO) (`` (implementation - (~~ (with_template [<name> <stream>] + (,, (with_template [<name> <stream>] [(def (<name> _) (do ! [output (java/io/BufferedReader::readLine <stream>)] @@ -261,7 +261,7 @@ )) (def (write message) (java/io/OutputStream::write (at utf8.codec encoded message) jvm_output)) - (~~ (with_template [<name> <method>] + (,, (with_template [<name> <method>] [(def (<name> _) (|> process <method>))] @@ -327,7 +327,7 @@ (`` (def (mock_process state mock) (All (_ s) (-> (Atom s) (Mock s) (Process IO))) (implementation - (~~ (with_template [<name> <mock>] + (,, (with_template [<name> <mock>] [(def (<name> _) (do [! io.monad] [|state| (atom.read! state)] |