standalone exapunks vm in ocaml
at main 23 lines 319 B view raw
1default: 2 @just --list 3 4dune *args: 5 env OCAMLRUNPARAM=b dune {{args}} 6 7clean *args: 8 just dune clean 9 10build *args: 11 dune build @ocaml-index {{args}} 12 13run *args: 14 @just build 15 @just dune exec exapunks {{args}} 16 17test *args: 18 @just build @runtest {{args}} 19 20format: 21 @dune fmt 22 23alias fmt := format