Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jwarwick/aoc_2021

Advent of Code 2021
https://github.com/jwarwick/aoc_2021

aoc aoc2021 ziglang

Last synced: 4 days ago
JSON representation

Advent of Code 2021

Awesome Lists containing this project

README

        

# 2021 Advent of Code

[Advent of Code (AOC)](http://adventofcode.com/2021) exercises in Zig

## How to Install Zig
```
% brew install zig --HEAD
# to get updated builds...
% brew reinstall zig
```

## How to Build a Day
```
% mkdir day01
% cd day01
% zig init-exe
% vim src/main.zig
...
% zig test src/main.zig
% zig build run
```

## Useful Zig Links
[Zig Learn](https://ziglearn.org/)