aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
blob: df8858165d5e23342b7dae5bd879fc50de3096b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
help:
    @just -l

build: fmt
    @zig build

run QUERY:
    @zig build run -- --debug-dump-disasm "{{QUERY}}"

test: fmt
    @zig build test

fmt:
    @zig fmt .