diff options
author | Eduardo Julian | 2021-09-04 12:49:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-04 12:49:52 -0400 |
commit | fc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch) | |
tree | 24858adac0e67228620b7e9166e3b7335be9fd5a /stdlib/source/library/lux/world/shell.lux | |
parent | 891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff) |
De-taggification | part 2
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/library/lux/world/shell.lux | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/stdlib/source/library/lux/world/shell.lux b/stdlib/source/library/lux/world/shell.lux index 216b2c856..186d241d4 100644 --- a/stdlib/source/library/lux/world/shell.lux +++ b/stdlib/source/library/lux/world/shell.lux @@ -1,37 +1,37 @@ (.module: [library - [lux #* + [lux "*" ["@" target] - ["jvm" ffi (#+ import:)] + ["jvm" ffi {"+" [import:]}] [abstract - [monad (#+ do)]] + [monad {"+" [do]}]] [control ["." function] - ["." try (#+ Try)] - ["." exception (#+ exception:)] - ["." io (#+ IO)] + ["." try {"+" [Try]}] + ["." exception {"+" [exception:]}] + ["." io {"+" [IO]}] [security - ["?" policy (#+ Context Safety Safe)]] + ["?" policy {"+" [Context Safety Safe]}]] [concurrency - ["." atom (#+ Atom)] - ["." async (#+ Async)]] + ["." atom {"+" [Atom]}] + ["." async {"+" [Async]}]] [parser - [environment (#+ Environment)]]] + [environment {"+" [Environment]}]]] [data ["." product] ["." text - ["%" format (#+ format)] + ["%" format {"+" [format]}] [encoding ["." utf8]]] [collection - ["." array (#+ Array)] + ["." array {"+" [Array]}] ["." list ("#\." mix functor)] ["." dictionary]]] [math - [number (#+ hex) + [number {"+" [hex]} ["n" nat]]]]] [// - [file (#+ Path)]]) + [file {"+" [Path]}]]) (type: .public Exit Int) |