commit e83003e857757287865c5457c238a01f0eaab866 parent f541c507cb7bb759ce4d54c73c7a21df5cafb2c3 Author: Walther Chen <walther.chen@gmail.com> Date: Fri, 1 Nov 2024 12:00:14 -0400 move util.c3 to util-frequency.c3 Diffstat:
M | justfile | | | 4 | ++-- |
R | util.c3 -> util-frequency.c3 | | | 0 |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/justfile b/justfile @@ -1,12 +1,12 @@ @check: - \fd --glob '*.c3' -x c3c compile -C util.c3 + \fd --glob '*.c3' -x c3c compile -C util-*.c3 test.c3 @test: c3c compile-test . # redirects outputs to stderr @build problem *args="": - c3c compile {{args}} {{problem}}.c3 util.c3 test.c3 1>&2 + c3c compile {{args}} {{problem}}.c3 util-*.c3 test.c3 1>&2 # using compile-run prints a bunch of logs run problem *args="": diff --git a/util.c3 b/util-frequency.c3