diff options
author | Oscar Najera <hi@oscarnajera.com> | 2022-12-06 17:26:18 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2022-12-06 17:26:18 +0100 |
commit | 7ca1851f732e2f74339354ecc25ef709754a3ac3 (patch) | |
tree | 4cb8db92d5024947edae833b250f749c423bd9be /AoC2022/06/makefile | |
parent | f34c85b78a1cbefa475a252184c13b68c9727332 (diff) | |
download | scratch-7ca1851f732e2f74339354ecc25ef709754a3ac3.tar.gz scratch-7ca1851f732e2f74339354ecc25ef709754a3ac3.tar.bz2 scratch-7ca1851f732e2f74339354ecc25ef709754a3ac3.zip |
[AoC2022] 06 Rust & Elixir
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 |