blob: 630e630e001fdb4c042621d48ceee467a4441852 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
##
# run solutions
#
# @file
# @version 0.1
# end
run:
emacs -batch -l ert -l solver.el -f ert-run-tests-batch-and-exit
sbcl --load ~/.sbclrc --script solver.lisp
rustc solver.rs && ./solver
|