diff options
author | Eduardo Julian | 2020-05-29 00:19:24 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-05-29 00:19:24 -0400 |
commit | 6eaa3b57f3f1ea2ce13b942bdb4ef502fc1729bc (patch) | |
tree | 746eb35ad0e8d10d3a6587bf0f6b3c5d867f7899 /new-luxc/source | |
parent | fcb1dcee2a4d502b41852a4c8e26b53ae7b2041e (diff) |
Can now import previously exported libraries.
Diffstat (limited to 'new-luxc/source')
-rw-r--r-- | new-luxc/source/program.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/program.lux b/new-luxc/source/program.lux index 54f1437c7..e2cf047e9 100644 --- a/new-luxc/source/program.lux +++ b/new-luxc/source/program.lux @@ -150,8 +150,8 @@ (def: (target service) (-> /cli.Service /cli.Target) (case service - (^or (#/cli.Compilation [sources target module]) - (#/cli.Interpretation [sources target module]) + (^or (#/cli.Compilation [sources libraries target module]) + (#/cli.Interpretation [sources libraries target module]) (#/cli.Export [sources target])) target)) |