diff options
author | Eduardo Julian | 2018-07-11 19:47:40 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-11 19:47:40 -0400 |
commit | fdfd7036806fe62ffaf054b61fbf16bbfb002b7c (patch) | |
tree | 21a0b03e30df303e111cc8e353dec9865b704917 /stdlib/source/lux/data/text/encoding.lux | |
parent | e7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (diff) |
- Improvements to import syntax [part 2].
Diffstat (limited to 'stdlib/source/lux/data/text/encoding.lux')
-rw-r--r-- | stdlib/source/lux/data/text/encoding.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/lux/data/text/encoding.lux b/stdlib/source/lux/data/text/encoding.lux index 7442faa68..2ea8e4a76 100644 --- a/stdlib/source/lux/data/text/encoding.lux +++ b/stdlib/source/lux/data/text/encoding.lux @@ -1,9 +1,9 @@ (.module: - lux - (lux (data [error (#+ Error)]) - (world [blob (#+ Blob)]) - (language ["_" host]) - [host (#+ import:)])) + [lux #* + [data [error (#+ Error)]] + [world [blob (#+ Blob)]] + [language ["_" host]] + [host (#+ import:)]]) (`` (for {(~~ (static _.jvm)) (as-is (def: utf8 Text "UTF-8") |