Go to file
Kalle Carlbark 7ac9a52892
chore: Remove unused function for day1
2023-12-02 17:59:56 +01:00
.vscode Update template to latest master 2023-11-29 08:14:50 +01:00
src chore: Remove unused function for day1 2023-12-02 17:59:56 +01:00
template Update template to latest master 2023-11-29 08:14:50 +01:00
.gitattributes Initial Template 2020-11-26 15:46:03 -06:00
.gitignore Update for 2021 2021-11-23 22:56:51 -06:00
LICENSE Update for 2022 2022-11-24 11:33:57 -06:00
README.md Update README.md 2023-11-29 07:17:54 +00:00
build.zig Remove unused step 2023-11-29 18:19:22 +01:00
build.zig.zon Add build.zig.zon 2023-11-29 08:21:50 +01:00
kaka.txt day 1 - Part02 2023-12-02 14:13:14 +01:00

README.md

Advent Of Code Zig Template

This repo provides a template for Advent of Code participants using Zig. It contains a main file for each day, a build.zig file set up with targets for each day, and Visual Studio Code files for debugging.

This template has been tested with Zig 0.12.0-dev.1754+2a3226453. It may not work with other versions.

How to use this template:

The src/ directory contains a main file for each day. Put your code there. The build command zig build dayXX [target and mode options] -- [program args] will build and run the specified day. You can also use zig build install_dayXX [target and mode options] to build the executable for a day and put it into zig-out/bin without executing it. By default this template does not link libc, but you can set should_link_libc to true in build.zig to change that. If you add new files with tests, add those files to the list of test files in test_all.zig. The command zig build test will run tests in all of these files. You can also use zig build test_dayXX to run tests in a specific day, or zig build install_tests_dayXX to create a debuggable test executable in zig-out/bin.

Each day contains a decl like this:

const data = @embedFile("data/day05.txt");

To use this system, save your input for a day in the src/data/ directory with the appropriate name. Reference this decl to load the contents of that file as a compile time constant. If a day has no input, or you prefer not to embed it in this form, simply don't reference this decl. If data is unused, the compiler will not try to load the file, and it won't error if the file does not exist.

This repo also contains Visual Studio Code project files for debugging. These are meant to work with the C/C++ plugin. There is a debug configuration for each day. By default all days are built in debug mode, but this can be changed by editing .vscode/tasks.json if you have a need for speed.

If you would like to contribute project files for other development environments, please send a PR.

Modifying the template

You can modify the template to add your own changes across all days. To do so, modify template/template.zig and then run zig build generate. The $ character in the template will be replaced by the two-digit day number (e.g. 04 or 17). This step will only overwrite files which have not been modified, so you will not lose work if you update the template after implementing several days. After updating the template and generating, you should commit the changes to template/hashes.bin in addition to the updated template and source files. This will ensure that the newly generated files are not considered modified if you update the template again.

Setting up ZLS

Zig has a reasonably robust language server, which can provide autocomplete for VSCode and many other editors. It can help significantly with exploring the std lib and suggesting parameter completions. The VSCode extension (augusterame.zls-vscode) will automatically install the language server in the background. If you are using a different editor, follow their install instructions. If you want to install a specific version of the language server (for example for maximum compatibility with 0.10.0), check their releases page or follow their instructions to build from source. Note that ZLS tracks master, so if you are using Zig 0.10.0 you may need to download a newer version to build ZLS.