diff options
author | Eduardo Julian | 2022-06-01 21:52:34 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-01 21:52:34 -0400 |
commit | 5d44577c3849a045052dc1c9f0dd7deddd032120 (patch) | |
tree | b0e00801734720e9f985c7dfa239aaa0bdea7bcd /stdlib/source/documentation/lux/world | |
parent | 659537b4ec859f1e705cdd1f82da29ab1a662d94 (diff) |
Extensible import syntax: Part 1
Diffstat (limited to '')
12 files changed, 82 insertions, 82 deletions
diff --git a/stdlib/source/documentation/lux/world.lux b/stdlib/source/documentation/lux/world.lux index d226dfa3d..527c627d4 100644 --- a/stdlib/source/documentation/lux/world.lux +++ b/stdlib/source/documentation/lux/world.lux @@ -1,8 +1,8 @@ (.using [library [lux "*" - [program {"+" program:}] - ["$" documentation {"+" documentation:}] + [program (.only program:)] + ["$" documentation (.only documentation:)] ["[0]" debug] [control ["[0]" io]] diff --git a/stdlib/source/documentation/lux/world/console.lux b/stdlib/source/documentation/lux/world/console.lux index bc7cd8818..cea7b0662 100644 --- a/stdlib/source/documentation/lux/world/console.lux +++ b/stdlib/source/documentation/lux/world/console.lux @@ -1,14 +1,14 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] ["@" target] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library diff --git a/stdlib/source/documentation/lux/world/file.lux b/stdlib/source/documentation/lux/world/file.lux index 33b42c72b..639d0b43a 100644 --- a/stdlib/source/documentation/lux/world/file.lux +++ b/stdlib/source/documentation/lux/world/file.lux @@ -1,14 +1,14 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] ["@" target] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library diff --git a/stdlib/source/documentation/lux/world/file/watch.lux b/stdlib/source/documentation/lux/world/file/watch.lux index 3cf437056..017d6e707 100644 --- a/stdlib/source/documentation/lux/world/file/watch.lux +++ b/stdlib/source/documentation/lux/world/file/watch.lux @@ -1,14 +1,14 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] ["@" target] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library diff --git a/stdlib/source/documentation/lux/world/input/keyboard.lux b/stdlib/source/documentation/lux/world/input/keyboard.lux index c379ef102..d224f77b3 100644 --- a/stdlib/source/documentation/lux/world/input/keyboard.lux +++ b/stdlib/source/documentation/lux/world/input/keyboard.lux @@ -1,17 +1,17 @@ (.using - [library - [lux "*" - ["$" documentation {"+" documentation:}] - [control - ["<>" parser - ["<[0]>" code]]] - [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] - [macro - ["[0]" template]]]] - [\\library - ["[0]" /]]) + [library + [lux "*" + ["$" documentation (.only documentation:)] + [control + ["<>" parser + ["<[0]>" code]]] + [data + ["[0]" text (.only \n) + ["%" format (.only format)]]] + [macro + ["[0]" template]]]] + [\\library + ["[0]" /]]) (documentation: /.Key "A key from a keyboard, identify by a numeric ID.") diff --git a/stdlib/source/documentation/lux/world/net.lux b/stdlib/source/documentation/lux/world/net.lux index 602177486..ba9f93fd5 100644 --- a/stdlib/source/documentation/lux/world/net.lux +++ b/stdlib/source/documentation/lux/world/net.lux @@ -1,18 +1,18 @@ (.using - [library - [lux "*" - [program {"+" program:}] - ["$" documentation {"+" documentation:}] - ["[0]" debug] - [control - ["[0]" io]]]] - [\\library - ["[0]" /]] - ["[0]" / "_" - ["[1][0]" uri] - ["[1][0]" http "_" - ["[1]/[0]" client] - ["[1]/[0]" status]]]) + [library + [lux "*" + [program (.only program:)] + ["$" documentation (.only documentation:)] + ["[0]" debug] + [control + ["[0]" io]]]] + [\\library + ["[0]" /]] + ["[0]" / "_" + ["[1][0]" uri] + ["[1][0]" http "_" + ["[1]/[0]" client] + ["[1]/[0]" status]]]) (documentation: /.Address "A TCP/IP address.") diff --git a/stdlib/source/documentation/lux/world/net/http/client.lux b/stdlib/source/documentation/lux/world/net/http/client.lux index a84745c73..69132bbc3 100644 --- a/stdlib/source/documentation/lux/world/net/http/client.lux +++ b/stdlib/source/documentation/lux/world/net/http/client.lux @@ -1,14 +1,14 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] ["@" target] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library diff --git a/stdlib/source/documentation/lux/world/net/http/status.lux b/stdlib/source/documentation/lux/world/net/http/status.lux index 434cc9f7c..a6555daa1 100644 --- a/stdlib/source/documentation/lux/world/net/http/status.lux +++ b/stdlib/source/documentation/lux/world/net/http/status.lux @@ -1,17 +1,17 @@ (.using - [library - [lux "*" - ["$" documentation {"+" documentation:}] - [control - ["<>" parser - ["<[0]>" code]]] - [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] - [macro - ["[0]" template]]]] - [\\library - ["[0]" /]]) + [library + [lux "*" + ["$" documentation (.only documentation:)] + [control + ["<>" parser + ["<[0]>" code]]] + [data + ["[0]" text (.only \n) + ["%" format (.only format)]]] + [macro + ["[0]" template]]]] + [\\library + ["[0]" /]]) (template [<name>] [(documentation: <name> diff --git a/stdlib/source/documentation/lux/world/net/uri.lux b/stdlib/source/documentation/lux/world/net/uri.lux index d25248a81..33094197b 100644 --- a/stdlib/source/documentation/lux/world/net/uri.lux +++ b/stdlib/source/documentation/lux/world/net/uri.lux @@ -1,13 +1,13 @@ (.using - [library - [lux "*" - [program {"+" program:}] - ["$" documentation {"+" documentation:}] - ["[0]" debug] - [control - ["[0]" io]]]] - [\\library - ["[0]" /]]) + [library + [lux "*" + [program (.only program:)] + ["$" documentation (.only documentation:)] + ["[0]" debug] + [control + ["[0]" io]]]] + [\\library + ["[0]" /]]) (documentation: /.URI "A Uniform Resource Identifier.") diff --git a/stdlib/source/documentation/lux/world/output/video/resolution.lux b/stdlib/source/documentation/lux/world/output/video/resolution.lux index 27a42050c..707ed98fa 100644 --- a/stdlib/source/documentation/lux/world/output/video/resolution.lux +++ b/stdlib/source/documentation/lux/world/output/video/resolution.lux @@ -1,13 +1,13 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library diff --git a/stdlib/source/documentation/lux/world/program.lux b/stdlib/source/documentation/lux/world/program.lux index 34040fa5c..4e46381ea 100644 --- a/stdlib/source/documentation/lux/world/program.lux +++ b/stdlib/source/documentation/lux/world/program.lux @@ -1,17 +1,17 @@ (.using - [library - [lux "*" - ["$" documentation {"+" documentation:}] - [control - ["<>" parser - ["<[0]>" code]]] - [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] - [macro - ["[0]" template]]]] - [\\library - ["[0]" /]]) + [library + [lux "*" + ["$" documentation (.only documentation:)] + [control + ["<>" parser + ["<[0]>" code]]] + [data + ["[0]" text (.only \n) + ["%" format (.only format)]]] + [macro + ["[0]" template]]]] + [\\library + ["[0]" /]]) (documentation: (/.Program !) "Access to ambient program data and the capacity to exit the program.") diff --git a/stdlib/source/documentation/lux/world/shell.lux b/stdlib/source/documentation/lux/world/shell.lux index cccc8dc3e..782bc4d63 100644 --- a/stdlib/source/documentation/lux/world/shell.lux +++ b/stdlib/source/documentation/lux/world/shell.lux @@ -1,14 +1,14 @@ (.using [library [lux "*" - ["$" documentation {"+" documentation:}] + ["$" documentation (.only documentation:)] ["@" target] [control ["<>" parser ["<[0]>" code]]] [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] + ["[0]" text (.only \n) + ["%" format (.only format)]]] [macro ["[0]" template]]]] [\\library |