Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jwarwick/aoc_2021
- Owner: jwarwick
- License: mit
- Created: 2021-12-01T18:11:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-10T18:49:31.000Z (about 3 years ago)
- Last Synced: 2024-11-08T04:41:31.455Z (about 2 months ago)
- Topics: aoc, aoc2021, ziglang
- Language: Zig
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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/)