Learning material, problems solutions and some side exploration with the language
Download Zig from an official release link here => https://ziglang.org/download/
This repository is using Zig 0.11.0
To run all tests:
# Omitting the RUN_SLOW_TESTS flag will skip the slower tests
make test RUN_SLOW_TESTS=trueTo run a single test:
# Replace yyyy and dd with year and day of the relevant AoC problem
zig test --test-filter "src\aoc_yyyy_dd.zig"make fmt# Replace yyyy and dd with year and day of the AoC problem you want to generate a template for
zig build problem_template -- yyyy dd