aboutsummaryrefslogtreecommitdiff
path: root/stdlib/project.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-07-09 14:35:38 -0400
committerEduardo Julian2022-07-09 14:35:38 -0400
commit7db42ab1b9d3c764772ca63c74bf44bb2b8b8325 (patch)
treebd1c865dea0902790f3e462cec4f9bc8d8ae428f /stdlib/project.lux
parentfc2737b5226eda69c12bc593e83e22ed54e4d3af (diff)
First-class programs instead of having a "lux program" extension.
Diffstat (limited to 'stdlib/project.lux')
-rw-r--r--stdlib/project.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/project.lux b/stdlib/project.lux
index 67ffc7c6b..b0275ebd8 100644
--- a/stdlib/project.lux
+++ b/stdlib/project.lux
@@ -82,12 +82,12 @@
]
"bibliotheca"
- ["test" "test/lux"]
+ ["test" test/lux._]
"scriptum"
["info" ["description" "Documentation for the Standard Library for the Lux programming language."]
- "program" "documentation/lux"
- "test" "documentation/lux"]
+ "program" documentation/lux._
+ "test" documentation/lux._]
"aedifex"
["info" ["description" "A build system/tool made exclusively for Lux."]
@@ -95,6 +95,6 @@
... Specifying them here is like automatically using Aedifex's "with" command.
"parents" ["jvm"]
... The name of the main module of the program.
- "program" "program/aedifex"
+ "program" program/aedifex._
... The name of the main module where the tests are located.
- "test" "test/aedifex"]]
+ "test" test/aedifex._]]