diff options
author | Oscar Najera <hi@oscarnajera.com> | 2022-12-06 16:47:44 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2022-12-06 16:47:44 +0100 |
commit | f34c85b78a1cbefa475a252184c13b68c9727332 (patch) | |
tree | 11b7b49735ca72adca4701f5f0a7619d6ed9bd6c /AoC2022/06/makefile | |
parent | 48fd41b4a011d04634830c9132cf137d33ad555a (diff) | |
download | scratch-f34c85b78a1cbefa475a252184c13b68c9727332.tar.gz scratch-f34c85b78a1cbefa475a252184c13b68c9727332.tar.bz2 scratch-f34c85b78a1cbefa475a252184c13b68c9727332.zip |
[AoC2022] Lisp 06
Diffstat (limited to 'AoC2022/06/makefile')
-rw-r--r-- | AoC2022/06/makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/AoC2022/06/makefile b/AoC2022/06/makefile new file mode 100644 index 0000000..fce871b --- /dev/null +++ b/AoC2022/06/makefile @@ -0,0 +1,15 @@ +## +# run solutions +# +# @file +# @version 0.1 + + + +# end + +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 |