diff options
author | Eduardo Julian | 2019-04-07 00:50:04 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-07 00:50:04 -0400 |
commit | a61c3f2e7bc29c3224264317b14254fe93d503fe (patch) | |
tree | 0560c531001a9442e6861a8ff43289ae621beec3 /lux-python | |
parent | 2a05d8f3711d2e1b6fcccd9a2869478197386a7f (diff) |
- Upgrade the tuple left-access mechanism to the new style.
- Updated JS compiler.
- Updated Python compiler.
Diffstat (limited to '')
-rw-r--r-- | lux-python/source/program.lux | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 33742d694..3a7fc9cc9 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -1,11 +1,12 @@ (.module: [lux #* - [cli (#+ program:)] - ["." io (#+ IO io)] + [abstract + [monad (#+ do)]] [control pipe - [monad (#+ do)] - ["." exception (#+ exception:)]] + [cli (#+ program:)] + ["." exception (#+ exception:)] + ["." io (#+ IO io)]] [data ["." maybe] ["." error (#+ Error)] |