diff options
Diffstat (limited to 'AoC2022/06/makefile')
-rw-r--r-- | AoC2022/06/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AoC2022/06/makefile b/AoC2022/06/makefile index fce871b..3ddfc1a 100644 --- a/AoC2022/06/makefile +++ b/AoC2022/06/makefile @@ -11,5 +11,5 @@ run: sbcl --load ~/.sbclrc --script solver.lisp emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit - # rustc solver.rs && ./solver - # elixir solver.ex + rustc solver.rs -o /tmp/solver && /tmp/solver + elixir solver.exs |