aboutsummaryrefslogtreecommitdiff
path: root/lux-scheme/commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'lux-scheme/commands.md')
-rw-r--r--lux-scheme/commands.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/lux-scheme/commands.md b/lux-scheme/commands.md
new file mode 100644
index 000000000..055e90d8f
--- /dev/null
+++ b/lux-scheme/commands.md
@@ -0,0 +1,24 @@
+# Scheme compiler
+
+## Test
+
+```
+cd ~/lux/lux-scheme/ && lein lux auto test
+cd ~/lux/lux-scheme/ && lein clean && lein lux auto test
+```
+
+## Build
+
+```
+## Develop
+cd ~/lux/lux-scheme/ \
+&& lein clean \
+&& lein lux auto build
+```
+
+## Try
+
+```
+cd ~/lux/lux-scheme/ && java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
+```
+