aboutsummaryrefslogtreecommitdiffstats
path: root/AoC2022/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-01-26 22:09:57 +0100
committerOscar Najera <hi@oscarnajera.com>2023-01-26 22:09:57 +0100
commitc7f01066164817bbf624f2e7a63c6ac0aeea5f61 (patch)
tree8dec4fd44655094ae59ca101672e9ee3ed339f7b /AoC2022/makefile
parent31aa0839953395f5998c7ec4350760cfebae6506 (diff)
downloadscratch-c7f01066164817bbf624f2e7a63c6ac0aeea5f61.tar.gz
scratch-c7f01066164817bbf624f2e7a63c6ac0aeea5f61.tar.bz2
scratch-c7f01066164817bbf624f2e7a63c6ac0aeea5f61.zip
Learning some julia
Diffstat (limited to 'AoC2022/makefile')
-rw-r--r--AoC2022/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/AoC2022/makefile b/AoC2022/makefile
index 95062ff..318c409 100644
--- a/AoC2022/makefile
+++ b/AoC2022/makefile
@@ -9,7 +9,7 @@ clean:
emacs: ${PWD}/solver.el
- cd ${PWD} && emacs -batch -l ert -l solver.elc -f ert-run-tests-batch-and-exit
+ cd ${PWD} && emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit
lisp: ${PWD}/solver.lisp
cd ${PWD} && time sbcl --load ~/.sbclrc --load solver.lisp --eval '(fiveam:run-all-tests)' --non-interactive
@@ -20,4 +20,6 @@ rust: ${PWD}/solver.rs
elixir: ${PWD}/solver.exs
cd ${PWD} && elixir solver.exs
+julia: ${PWD}/solver.jl
+ cd ${PWD} && julia solver.jl
# end