aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /lux-python
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/source/program.lux46
1 files changed, 23 insertions, 23 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux
index 713d4e854..553b07499 100644
--- a/lux-python/source/program.lux
+++ b/lux-python/source/program.lux
@@ -1,26 +1,26 @@
(.module:
[library
- [lux #*
- [program (#+ program:)]
- ["." ffi (#+ import:)]
+ [lux "*"
+ [program {"+" [program:]}]
+ ["." ffi {"+" [import:]}]
[abstract
- [monad (#+ do)]]
+ [monad {"+" [do]}]]
[control
- [pipe (#+ new>)]
+ [pipe {"+" [new>]}]
["." maybe]
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]
- ["." io (#+ IO io)]
+ ["." try {"+" [Try]}]
+ ["." exception {"+" [exception:]}]
+ ["." io {"+" [IO io]}]
["." function]
[concurrency
- ["." async (#+ Async)]]]
+ ["." async {"+" [Async]}]]]
[data
["." text ("#\." hash)
- ["%" format (#+ format)]
+ ["%" format {"+" [format]}]
[encoding
["." utf8]]]
[collection
- ["." array (#+ Array)]
+ ["." array {"+" [Array]}]
["." list]]]
[macro
["." template]]
@@ -28,39 +28,39 @@
[number
["n" nat]
["." i64]]]
- ["." world #_
+ ["." world "_"
["." file]
["#/." program]]
["@" target
["_" python]]
[tool
[compiler
- ["." phase (#+ Operation Phase)]
+ ["." phase {"+" [Operation Phase]}]
[reference
- [variable (#+ Register)]]
+ [variable {"+" [Register]}]]
[language
[lux
- [program (#+ Program)]
- [generation (#+ Context Host)]
+ [program {"+" [Program]}]
+ [generation {"+" [Context Host]}]
["." synthesis]
[analysis
- [macro (#+ Expander)]]
+ [macro {"+" [Expander]}]]
[phase
- ["." extension (#+ Extender Handler)
+ ["." extension {"+" [Extender Handler]}
["#/." bundle]
- ["." analysis #_
+ ["." analysis "_"
["#" python]]
- ["." generation #_
+ ["." generation "_"
["#" python]]]
[generation
["." reference]
["." python
["." runtime]]]]]]
[default
- ["." platform (#+ Platform)]]
+ ["." platform {"+" [Platform]}]]
[meta
- [archive (#+ Archive)]
- ["." packager #_
+ [archive {"+" [Archive]}]
+ ["." packager "_"
["#" script]]]]]]]
[program
["/" compositor